This information isn't scanned by default. You could use custom scanning to read this from the registry and generate a report afterwards.
- Under
Configuration\Custom scanning, section
Registry Scanning, hit
Add registry key to scan - Rootkey:
HKEY_LOCAL_MACHINE - Regpath:
SYSTEM\CurrentControlSet\Control\Power\User\PowerSchemes - Regvalue:
ActivePowerScheme- Rescan your assets (open their asset page or select all server from the Assets tab and hit
Rescan)
- Run a report like the following to list the active power schemes
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
Case tblRegistry.Value
When '381b4222-f694-41f0-9685-ff5bb260df2e' Then 'Balanced'
When '8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c' Then 'High Performance'
When 'a1841308-3541-4fab-bc81-f71556f20b4a' Then 'Power Saver'
Else 'Unknown/Custom' End As [Power plan],
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Where tblAssetCustom.State = 1 And tblRegistry.Valuename = 'ActivePowerScheme'
For instructions on how to run a report, please refer to
this note.