Hello:
I want to adjust power management settings (Configuration - Hardware - Power Management - Properties - Power Management Policy) and set it as "High Performance" on the host via PoweCLI.
I found, that I can easily do it by using the following command:
Set-VMHostAdvancedConfiguration -Name "Power.CPUPolicy" -Value "High Performance"
However, even the command executed just fine and I can verify the change by running
Get-VMHostAdvancedConfiguration -Name "Power.CPUPolicy"
the screen still shows "old" policy and it will reflect the change on the screen only after reboot.
Is it possible to adjust power management settings via script without reboot?
Thank you!