If you require help in writing the script, then I would suggest to look at powercli scripts here and a simple script here
$vms = Import-CSV PowereredOnVMGuests.csv
foreach ($vm in $vms)
{
Stop-VM $vm.Name
sleep 5
}
If you require help in writing the script, then I would suggest to look at powercli scripts here and a simple script here
$vms = Import-CSV PowereredOnVMGuests.csv
foreach ($vm in $vms)
{
Stop-VM $vm.Name
sleep 5
}