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 = …
The following powershell snippet is going to unconfigure the diagnostic coredump partition using the esxcli version 2 cmdlet. The second part will reconfigure the diagnostic partition with the ‘smart’ option so that an accessible partition is chosen. If you want to configure a new diagnostic partition the you will find …