Regedit Key to Toggle Fast Startup in Windows 10 and 11
Fast Startup in Windows 10 and Windows 11 reduces boot times by saving the operating system state to a hibernation file during shutdown. While this feature can be configured through the Control Panel, it can also be managed directly through the Windows Registry. The specific registry value that controls this feature is named HiberbootEnabled. This guide provides the exact registry path and step-by-step instructions to enable or disable Fast Startup using the Registry Editor (Regedit).
The Fast Startup Registry Path and Key
- Registry Path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power - Value Name:
HiberbootEnabled - Value Type:
REG_DWORD(32-bit Value) - Value Data:
1= Fast Startup is Enabled (Default)0= Fast Startup is Disabled
How to Modify Fast Startup Using Regedit
Press Windows Key + R to open the Run dialog box.
Type
regeditand press Enter (select Yes if prompted by User Account Control).In the Registry Editor address bar at the top, paste the following path and press Enter:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\PowerIn the right pane, locate the DWORD value named HiberbootEnabled.
- Note: If this value does not exist, right-click an empty space
in the right pane, select New > DWORD (32-bit)
Value, and name it
HiberbootEnabled.
- Note: If this value does not exist, right-click an empty space
in the right pane, select New > DWORD (32-bit)
Value, and name it
Double-click HiberbootEnabled to edit it.
Set the Value data field to:
0to turn Fast Startup Off.1to turn Fast Startup On.
Ensure the Base is set to Hexadecimal, then click OK.
Close the Registry Editor and restart your computer for the changes to take effect.
Requirement: Hibernation Must Be Enabled
Fast Startup relies directly on the Windows hibernation feature. If
hibernation is disabled, the HiberbootEnabled registry
value will have no effect, and Fast Startup will remain inactive.
To ensure hibernation is enabled so Fast Startup can function: 1.
Open Command Prompt as an Administrator. 2. Run the
following command: cmd powercfg /hibernate on