VMware Cloud Community
larstr
Champion
Champion
Jump to solution

Query hosts for Power saving technology

Has anyone figured out how we can query for Power Saving technology?

Selection_633.png

Lars

0 Kudos
1 Solution

Accepted Solutions
LucD
Leadership
Leadership
Jump to solution

With the following you can query the settings

$esxcli = Get-EsxCli -VMHost MyEsx

$esxcli.system.settings.advanced.list() | where {$_.Path -match '/Power'}


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

View solution in original post

0 Kudos
2 Replies
LucD
Leadership
Leadership
Jump to solution

With the following you can query the settings

$esxcli = Get-EsxCli -VMHost MyEsx

$esxcli.system.settings.advanced.list() | where {$_.Path -match '/Power'}


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos
larstr
Champion
Champion
Jump to solution

Thanks again, Luc.

Perfect answer as always.

Lars

0 Kudos