List all SCCM collections with Power Settings.

  • List all SCCM collections with Power Settings.

    Posted by Roddy Gelberty on 29 July 2020 at 11:58 am

    How do I list all SCCM collections with Power Settings? It is quite hard to identify how Devices get power settings. Is there a script or an SQL query that I can run to get this information?

    Roddy Gelberty replied 5 years ago 2 Members · 1 Reply
  • 1 Reply
  • Roddy Gelberty

    Member
    29 July 2020 at 12:03 pm

    Sarah, import the configuration manager PowerShell module.
    Run the below PowerShell command.

    Get-CMCollection | Where-Object {$_.PowerConfigsCount -gt 0 } | select -Property Name, PowerConfigsCount 

Log in to reply.