The following Get-EsxCli command will unconfigure your diagnostic partition and reconfigure with smart selection. This was needed because the install partition uuid had changed due to an option in the NetApp system while doing system testing. 1$server_list = Get-VMhost 2 3 4Foreach ($srv in $server_list) 5{ 6 $esxcli = …

These are powercli goodies I use on a regular base. I have collected them here to find them easily. Some I wrote myself, some are copied from other sites. If I didn't reference the source, I don't know anymore where I found it. Change portgroup on a lot of vm's Testing with one vm 1get-vm my_vm_name | …
This script reads a CSV file and executes storage vmotions based on the input. The number of storage vmotions can be throttled and is by default set to maximum 6 concurrent vMotions. If the VM is already on the correct location it will not execute a storage vmotion for that vm. This is still work in progress. The …