Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Network Adapter Information for All Virtual MachinesContent of List Network Adapter Information for All Virtual Machines.vbsMD5 Hash: 57DDCF6497BC5DEC16B2CBF4FC34249D |
||
' Description: Lists network adapters for all the virtual machines on a computer.
On Error Resume Next Set objVS = CreateObject("VirtualServer.Application") set colVMs = objVS.VirtualMachines For Each objVM in colVMS Set colNetworkAdapters = objVM.NetworkAdapters For Each objAdapter in colNetworkAdapters Wscript.Echo "Virtual machine: " & objVM.Name Wscript.Echo "Network adapter ID: " & objAdapter.ID Wscript.Echo "Ethernet address: " & objAdapter.EthernetAddress Wscript.Echo "Is ethernet address dynamic: " & _ objAdapter.IsEthernetAddressDynamic Wscript.Echo "Virtual machine: " & objAdapter.VirtualMachine Wscript.Echo "Virtual network: " & objAdapter.VirtualNetwork Wscript.Echo Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |