Imagine the scenario, you deploy some Windows 7 laptops but receive feedback from the users that they don't like the power management default settings,
to get around this you could use Group Policy or if that's not possible due to time constraints or other issues, you could import the power management settings directly into your image based on whether the target pc is a Laptop or Desktop.
The default power management plans in Windows 7 are pretty good, but also quite aggressive, so you will probably want to configure them in some way,
View current PowerScheme
First of all you will need to understand how to 'see' them. On a Client Laptop (not a VM or desktop, as they won't show the profiles we are interested in) open a administrator command prompt and type powercfg -list
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Imagine the scenario, you deploy some Windows 7 laptops but receive feedback from the users that they don't like the power management default settings,
to get around this you could use Group Policy or if that's not possible due to time constraints or other issues, you could import the power management settings directly into your image based on whether the target pc is a Laptop or Desktop.
The default power management plans in Windows 7 are pretty good, but also quite aggressive, so you will probably want to configure them in some way,
View current PowerScheme
First of all you will need to understand how to 'see' them. On a Client Laptop (not a VM or desktop, as they won't show the profiles we are interested in) open a administrator command prompt and type powercfg -list
from the above we can see the the Balanced power plan is selected currently.
Export current PowerScheme
Now let's make some changes to our Power scheme (as a test, change the values for hard disc time out in advanced properties of the current plan).
Once you have power management the way you want, we will export our settings using powercfg -export
Import a previously exported PowerScheme
Now that we have our pow settings saved, let's import them (on another computer) using powercfg -import
and verify
Note that even though the scheme is imported, it's not set as default, to do that we have to use the powercfg -set command.
Set current PowerScheme
Ok now that we know how to import it, let's set a powerscheme, to do so use powercfg -setactive guid
let's verify the change
It Worked and now our powerscheme is set to our custom scheme.
Share this post
Link to post
Share on other sites