hi,everyone:
when i user the powercli cmdlet to migrate the vm,my script like this:
foreach ($vm in (get-vm |sort -property name)){
move-vm -vm $vm -destination myhost
}
the script can work's well,but it's migrate the vm one by one.it's too slow.
I want migrate the tow vm at the same time,how can i do?