Power Management Tab In Windows 7

  • Click on the “Power Management” Tab Figure 9 Power Management tab 4. Uncheck to turn off the Allow the computer to turn off this device to save power option, and click OK button. Hopefully this will help. Please refer to the following for further information Windows disable USB power saving (DisableSelectiveSuspend) by Gordy B.
  • Similar help and support threads Thread: Forum: AHCI Link Power Management - Enable HIPM and DIPM How to Enable HIPM and DIPM for your SSD and HDD in Windows 7 and Windows 8 AHCI Link Power Management is a technique where the SATA AHCI controller puts the SATA link to the internal HDD and/or SSD disk into a very low power mode when there's no IO (input/output) activity for awhile.
  1. Power Management Tab Missing Windows 10
  2. Keyboard Power Management Tab Missing Windows 7
-->

This article provides a resolution to disable network adapter power management on a single computer.

The setting under Device Manager Power Management tab Allow the computer to turn of this device to save power has no effect on Wi-Fi power management. The setting only affects how Windows and the device driver handle the device power-down during suspend and hibernation. We recommend keeping the default value checked for the setting. Method 2 - Through Windows Settings. Go to Control Panel - Network and Sharing Center - Change Adapter Settings; In the Network Connections pane, right-click on your wireless adapter and choose 'Properties' then click on the 'Configure.' Button; Click the Power Management tab then uncheck the box if it's enabled or checking the box if it's.

Original product version: Windows 7 Service Pack 1, Windows Server 2008 R2 Service Pack 1
Original KB number: 2740020

Summary

The enhancements made to Windows 7 for managing power settings for network adapters greatly reduces the number of spurious wakes, allowing computers to sleep for longer periods of time when idle. Furthermore, you can configure the power management settings to meet the needs of your users through device properties, standard registry settings.

When deploying Windows 7 or Windows Server 2008 R2, you may want to disable the Allow the computer to turn off this device to save power network adapter power management setting on some computers.

More information

The Allow the computer to turn off this device to save power setting controls how the network card is handled when the computer enters sleep and can be used if a driver misrepresents how it handles sleep states. Windows never turns off the network card due to inactivity. When this setting is checked(enabled), Windows puts the network card to sleep and when it resumes it puts it back to D0. When this setting is not checked(disabled), Windows completely halts the device and on resume reinitializes it. This setting is useful if a network card driver says it supports going to different sleep states and back to D0 but it ultimately doesn't support this functionality.

You can use Device Manager to change the power management settings for a network adapter. To disable this setting in Device Manager, expand Network Adapters, right-click the adapter, select Properties, select the Power Management tab, and then clear the Allow the computer to turn off this device to save power check box.

In Windows 7 or Windows Server 2008 R2, you have two additional check boxes on the Power Management tab for the Network Adapter that defines whether this device can wake the computer:

  • Allow this device to wake the computer
  • Only allow a magic packet to wake the computer

Note

For above mentioned settings to work, you may also have to enable BIOS settings to enable WOL. The specific BIOS settings depend on the manufacturer of the computer.

Power Management Tab In Windows 7

However, with some Windows 7 or Windows Server 2008 R2 installations, you may want to use the registry to disable the Allow the computer to turn off this device to save power network adapter power management setting or to configure the wake options described above.

How to use Registry Editor to disable network adapter power management on a single computer

Important

This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, see How to back up and restore the registry in Windows.

To use Registry Editor to disable the Allow the computer to turn off this device to save power network adapter setting for a single computer, follow these steps:

  1. Select Start, select Run, type regedit in the Open box, and then select OK.

  2. Locate and then select the following registry subkey:
    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlClass{4D36E972-E325-11CE-BFC1-08002bE10318}DeviceNumber

    Note

    DeviceNumber is the network adapter number. If a single network adapter is installed on the computer, the DeviceNumber is 0001.

  3. Select PnPCapabilities.

  4. On the Edit menu, select Modify.

  5. In the Value data box, type 24, and then select OK.

    Note

    By default, a value of 0 indicates that power management of the network adapter is enabled. A value of 24 will prevent Windows 7 from turning off the network adapter or let the network adapter wake the computer from standby.

  6. On the File menu, select Exit.

Additional information

You have three options for the power management properties of the Network Card:

  • Option 1: Allow the computer to turn off this device to save power
  • Option 2: Allow this device to wake the computer
  • Option 3: Only allow a magic packet to wake the computer

The different possible combinations that exist along with their DWORD values (in decimal and hex) are:

  • Option 1 and option 2 are checked, Option 3 is unchecked: This is default and hence its value is 0.
  • Option 1, option 2, and option 3 are all checked: The value becomes 0x100 (256).
  • Only option 1 is checked: The value becomes 0x110 (272).
  • Option 1 is unchecked (Note that option 2 and option 3 will be greyed out as a result): The value becomes 0x118 (280).

A conflict happens for the DWORD value for the last step where Option 1 is only checked, if the following steps are done exactly as mentioned below:

  • If you check all the boxes, then the value is 256 (0x100).
  • If you uncheck the box 1, which will grey out the other two, the value becomes 280 (0x118).
  • If you check all the boxes except, the third one, PNPCapabilities value becomes 0.
  • If step 2 is repeated, the value becomes 24 (0x18).

Now, the values are different for the same setting because the way it has been achieved.

Power Management Tab Missing Windows 10

For deployment purpose, to keep the value for Allow the Computer to turn off this device to save power cleared, one needs to use the value 24 (0x18). Reason being, by default the option 1 and 2 are checked, which is same as DWORD value 0 of this key (even though the key does not exist in the registry by default). Hence, creating this key with a value 24 (0x18) in the deployment script/build process will inject this entry in the registry, which in turn should uncheck the first box during server startup.

Keyboard Power Management Tab Missing Windows 7

In the same way, if you want to keep the Allow the Computer to turn off this device to save power checked and the Option 2 and 3 cleared, the required value would be 10 (0x16).