VRO Get All Vsphere VMS Virtual Machines Shortcode
var vCenters=VcPlugin.allSdkConnections;
for each (vCenter in vCenters){
var vms = vCenter.allVirtualMachines
for each (vm in vms) {
System.log(vm.name);
//do your per vm action here
}
}
imtrinity94