Quantcast
Channel: VMware Communities: Message List
Viewing all articles
Browse latest Browse all 165945

Re: Move VMs in Folders by FolderID

$
0
0

How about this, haven't tested it so I would test first.

 

csv headers

vmname,folderid

 

$vmlist = import-csv vm_placement.csv

 

$vmlist | % {

$folder = Get-Folder -id $vmlist.folderid

Move-VM -VM $vmlist.vmname -destination $folder

}


Viewing all articles
Browse latest Browse all 165945

Trending Articles