Ben Armstrong teaches us how to enable remote administration console, the VMRC, disabled by default on Virtual Server, with a simple script:
set vs = wscript.CreateObject(“VirtualServer.Application”)
vs.VMRCEnabled = true
vs.VMRCAdminPortNumber = 5900
vs.VMRCIdleConnectionTimeoutEnabled = false
vs.VMRCXResolution = 800
vs.VMRCYResolution = 600
Read the original post for updates and comments.