Powercfg
Batch file{{-}}Windows Command Prompt }} PowerCFG (executable name powercfg.exe) is a command-line utility that is used from an elevated Windows Command Prompt to control all configurable power system settings, including hardware-specific configurations that are not configurable through the Control Panel, on a per-user basis. It was first introduced by Microsoft in Windows XP SP2 in 2003.
Usage
Powercfg must be run from an elevated command prompt, and, under Windows XP, it requires workstation Administrator or power user rights. Power Schemes are configured on a per-user basis. The most common cause of problems with power saving and hibernation on Windows systems is an incompatible device driver. This can be diagnosed by disabling each device in turn (with powercfg /devicedisablewake). When activating power saving across a local area network, it is important to ensure that software updates, security patches and antivirus updates in particular, are not disrupted. Microsoft recommends to configure its Windows Server Update Services to install updates when workstations are available and Windows Task Scheduler can be set to wake the machine when needed.
Syntax
XP |
|
|---|---|
Vista, 7 |
|
Parameters
Parameter |
Description |
XP |
Other OSs |
||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Lists all power schemes in the current user's environment. |
||||||||||||||||||||||||||
|
Displays the contents of the specified power scheme.
|
||||||||||||||||||||||||||
CREATES a power scheme with the specified |
|||||||||||||||||||||||||||
|
Modifies a setting value in the current power scheme.
|
||||||||||||||||||||||||||
|
Modifies the name of a power scheme and, optionally, the scheme description.
|
||||||||||||||||||||||||||
|
Duplicates the specified power scheme. The resulting GUID which represents the new scheme will be displayed.
|
||||||||||||||||||||||||||
|
Deletes the power scheme with the specified GUID.
|
||||||||||||||||||||||||||
|
Deletes a power setting.
|
||||||||||||||||||||||||||
|
Makes the specified power scheme active on the computer.
|
||||||||||||||||||||||||||
|
Retrieves the currently active power scheme. |
||||||||||||||||||||||||||
|
Sets a value associated with a specified power setting while the computer is powered by AC power.
|
||||||||||||||||||||||||||
|
Sets a value associated with a specified power setting while the computer is powered by DC power.
|
||||||||||||||||||||||||||
|
Enables or disables the hibernate feature. Hibernate timeout is not supported on all computers. |
||||||||||||||||||||||||||
|
Specify the power scheme to be operated upon with a numerical identifier. |
||||||||||||||||||||||||||
|
Turn one of the following global power flags on or off:
|
||||||||||||||||||||||||||
|
Configure the battery alarm.
|
||||||||||||||||||||||||||
|
Reports the sleep states available on the computer. Attempts to report reasons why sleep states are unavailable. |
||||||||||||||||||||||||||
|
Returns a list of devices that meet the specified flags:
|
||||||||||||||||||||||||||
|
Enables the device to wake the computer from a sleep state.
|
||||||||||||||||||||||||||
|
Disables the device from waking the computer from a sleep state.
|
||||||||||||||||||||||||||
|
Imports all power settings from the specified file.
|
||||||||||||||||||||||||||
|
Exports a power scheme, represented by the specified GUID, to the specified file.
|
||||||||||||||||||||||||||
|
Reports information about the event that woke the computer from the last sleep transition. |
||||||||||||||||||||||||||
|
Displays all aliases and their corresponding GUIDs. The user may use these aliases in place of any GUID at the command prompt |
||||||||||||||||||||||||||
|
Sets a security descriptor associated with a specified power setting, power scheme, or action.
|
||||||||||||||||||||||||||
|
Gets a security descriptor associated with a specified power setting, power scheme, or action.
|
||||||||||||||||||||||||||
|
Enumerate application and driver Power Requests. Power requests prevent the computer from automatically powering off the display or entering a low-power sleep mode. |
||||||||||||||||||||||||||
|
Sets a Power Request override for a particular Process, Service, or Driver. If no parameters are specified, this command displays the current list of Power Request Overrides.
|
||||||||||||||||||||||||||
|
Analyzes the system for common energy-efficiency and battery life problems. The
|
||||||||||||||||||||||||||
Enumerates the active wake timers. If enabled, the expiration of a wake timer wakes the system from sleep and hibernate states. |
|||||||||||||||||||||||||||
Displays Help at the command prompt. |
|||||||||||||||||||||||||||
- Power scheme GUIDs
The use of GUIDs avoids any problems with internationalisation when applying Power Saving to non-English versions of Windows. The three built-in power schemes have the GUIDs listed below:
SCHEME_MAX= Power saver (Max power saving)SCHEME_BALANCED= Balanced (Typical)SCHEME_MIN= High performance (Min power saving)
Examples
Lists all power schemes
powercfg /l
List all Aliases
powercfg -aliases
Retrieve the currently active power scheme
powercfg -getactivescheme
Set the Monitor and disc timeouts for the current Power saver scheme
powercfg -Change -monitor-timeout-ac 20
powercfg -Change -disk-timeout-ac 30
Enable the mouse to wake from sleep
powercfg -deviceEnableWake "Microsoft USB IntelliMouse Explorer"
Set the 'Power saver' scheme
powercfg -SETACTIVE SCHEME_MAX
Create a Custom Power scheme and set it as active
Set _Custom_Power=B1234567-SS64-SS64-SS64-F00000111AAA
powercfg -DUPLICATESCHEME SCHEME_MAX %_Custom_Power%
powercfg -CHANGENAME %_Custom_Power% "SS64 Power Scheme "
powercfg -SETACTIVE %_Custom_Power%
Disable the sleep button (for the users current power scheme)
For /f "tokens=2 delims=:(" %%G in ('powercfg -getActiveScheme') do (
powercfg -setAcValueIndex %%G sub_buttons sButtonAction 0
powercfg -setActive %%G
)
Disable the sleep button (for all available power schemes)
For /f "skip=2 tokens=2,4 delims=:()" %%G in ('powercfg -list') do (
powercfg -setAcValueIndex %%G sub_buttons sButtonAction 0
if "%%H" == " *" powercfg -setActive %%G
)
See also
- List of Control Panel applets (Windows)#Standard applets