Ben Armstrong does it again, this time offering a sample script to gather information about the Virtual Server virtual networks.
Set vs = CreateObject("VirtualServer.Application")
For Each vn in vs.VirtualNetworks
Wscript.Echo
Wscript.Echo "Virtual Network: " & vn.name
Wscript.Echo "Packets sent: " & vn.packetsSent
Wscript.Echo "Packets received: " & vn.packetsReceived
Wscript.Echo
Next
The script will iterate over all of the virtual networks on an instance of Virtual Server and let you know the name, packets sent, and packets received for each network.
You can thank Ben and comment on the script on his Web site at the original article, here.