cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Daniel_B
Lansweeper Alumni
List of computers with their active power plan

Pre-requisite: Set up custom registry scanning for ActivePowerScheme
- 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)


Meets all the following criteria:
- Active asset
- Windows asset
- Registry succesfully scanned for ActivePowerScheme

Sorted on:
- Asset name


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'
Order By tblAssets.AssetName
2 REPLIES 2
paulruvalcaba
Engaged Sweeper III
How could we include the Screen and Sleep time settings in the scan?




Daniel.B wrote:
List of computers with their active power plan

Pre-requisite: Set up custom registry scanning for ActivePowerScheme
- 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)


Meets all the following criteria:
- Active asset
- Windows asset
- Registry succesfully scanned for ActivePowerScheme

Sorted on:
- Asset name


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'
Order By tblAssets.AssetName


BUMP

Apaulcolypse wrote:
How could we include the Screen and Sleep time settings in the scan?




Daniel.B wrote:
List of computers with their active power plan

Pre-requisite: Set up custom registry scanning for ActivePowerScheme
- 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)


Meets all the following criteria:
- Active asset
- Windows asset
- Registry succesfully scanned for ActivePowerScheme

Sorted on:
- Asset name


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'
Order By tblAssets.AssetName