Power Off listed VM’s
Connect to Vcenter Connect-VIServer vmwareenterprise.com -WarningAction 0 ####### Shutdown all VMs from the list “C:\temp\vm.txt“########### foreach($vmlist in (Get-Content -Path C:\TEMP\vm.txt)) { $vm = Get-VM -Name $vmlist Shutdown-VMGuest -VM $vm -Confirm:$false … Read More