Skip to content
Follow
Windows 🟡 Intermediate

How to Enable Fast Startup in Windows 11 Easily

Richard
Written by
Richard
Aug 14, 2021 Updated Jul 28, 2026 8 min read
How to Enable or Disable Fast Startup in Windows 11
How to Enable or Disable Fast Startup in Windows 11
⚡ Quick Answer

Enable or disable Fast Startup in Windows 11 via Control Panel Hardware and Sound Power Options Change what the power button does. Click “Change settings that are currently unavailable,” then check or uncheck “Turn on fast startup.

When Fast Startup is Helpful

Fast Startup in Windows 11 helps your computer start up much faster, saving you time when you turn it on. It works by saving some system information when you shut down, so it doesn’t have to load everything from scratch the next time. This can make your PC feel quicker, especially if you’ve noticed it taking a while to boot up.
  • Faster Start Times: This is the main advantage. If you feel like you’re waiting too long for your PC to start each morning, Fast Startup can make a big difference.
  • Less Wear and Tear: While not a major concern for most people, a faster startup process means the system is actively powering up and loading components for less time.

When You Might Want to Turn Fast Startup Off

Sometimes, you might need to turn off Fast Startup in Windows 11. This feature can occasionally cause issues with hardware drivers not starting correctly, which might make your devices stop working. Also, some important Windows updates need a full restart to install properly, and Fast Startup can sometimes interfere with this process.
  • Driver Problems: Sometimes, drivers (which are like small programs that help your hardware work with Windows) might not start up correctly after a Fast Startup. This can cause devices to not work right.
  • System Updates: Some Windows updates need a full shutdown and restart to install correctly. Fast Startup might get in the way of this.
  • Dual Booting: If you have more than one operating system on your computer (like Windows and Linux), Fast Startup can sometimes stop the other OS from accessing your Windows files correctly. This happens because Windows might consider the drive “locked.”
  • Troubleshooting: If your system is acting strangely or crashing, doing a full shutdown (by turning off Fast Startup) can help you figure out if Fast Startup is causing the problem.

Option 1Turning Fast Startup On or Off Through Power Options (The Easiest Way)

This is the most common method. You don’t need to deal with complicated settings. You need to be logged in as an administrator to make this change.

Step 1Open Control Panel

The next step is to access the settings that control power. Searching for the setting is a good approach.

  • Click the Start button on your taskbar .
  • Type Control Panel and click on the Control Panel app when it appears in the search results.
Windows 11 Control Panel dashboard showing power options.
Windows 11 Control Panel dashboard showing power options.

Step 2Go to Power Options

Once you have the Control Panel open, the next step is to find the Power Options. If your Control Panel is showing categories, click on ‘Hardware and Sound’ and then ‘Power Options.’ If you see large or small icons instead, you can just click directly on ‘Power Options.’

  • If your Control Panel is set to “Category” view, click on Hardware and Sound, then click on Power Options.
  • If your Control Panel is set to “Large icons” or “Small icons” view, just click on Power Options directly.
Control Panel Power Options window showing power plan settings in Windows 11.
Control Panel Power Options window showing power plan settings in Windows 11.

Step 3Choose What the Power Buttons Do

In the Power Options window, look for a link on the left side.

  • Click on Choose what the power buttons do.

Step 4Unlock Shutdown Settings

⚠️Warning
Shutdown settings options may appear grayed out when you access them, which is normal behavior for the Fast Startup feature. This grayed out state indicates that the specific settings related to Fast Startup are not currently available for direct modification through that particular interface.
  • Click on Change settings that are currently unavailable. You might see a User Account Control (UAC) window asking for permission; click Yes.
Change settings that are currently unavailable in Windows 11.
Change settings that are currently unavailable in Windows 11.

Step 5Enable or Disable Fast Startup

The Fast Startup feature in Windows 11 allows you to turn this setting on or off. Find the box labeled 'Turn on fast startup (recommended).' To turn Fast Startup on, check the box. To turn Fast Startup off, uncheck the box.

  • To turn Fast Startup ON: Make sure the box next to "Turn on fast startup" is checked.
  • To turn Fast Startup OFF: Uncheck the box next to "Turn on fast startup."
Turn on Fast Startup option in Windows 11 power settings.
turn off fast startup recommended in windows 11

Step 6Save Your Changes

Don't forget this important step!

  • Click the Save changes button at the bottom.

Option 2Checking Fast Startup Status with PowerShell

If you're more comfortable using commands, you can quickly check if Fast Startup is on or off using Windows PowerShell. This method is only for checking, not for changing the setting.

Step 1Open Windows Terminal as Administrator

We need a command prompt that has the right permissions.

  • Click the Start button.
  • Type Windows Terminal.
  • Right-click on Windows Terminal in the search results and select Run as administrator.
  • If a User Account Control (UAC) window appears, click Yes.

Step 2Paste the Command

Now, copy and paste the following command into the PowerShell window:

💻Code
(Get-CimInstance -ClassName Win32_PowerSystem -Namespace root\cimv2\power).HiberbootEnabled

Step 3Understand the Result

After you run the command, you'll see the status of Fast Startup. If the output says 'True,' it means Fast Startup is currently turned on. If it says 'False,' Fast Startup is turned off. Keep in mind that if hibernation is disabled on your system, Fast Startup will also be off.

  • If you see True, Fast Startup is currently turned ON.
  • If you see False, Fast Startup is currently turned OFF.
⚠️Warning
As mentioned before, if hibernation is turned off on your system, Fast Startup will also be off, even if this command shows "True." Turning off hibernation overrides the Fast Startup setting.

Option 3Using Registry Editor to Control Fast Startup

For those who like to work directly with the system's core settings, you can use the Registry Editor. This method requires caution, as making wrong changes to the registry can cause your system to become unstable.

Step 1Open Registry Editor

Let's access the registry.

  • Click the Start button.
  • Type regedit and click on Registry Editor when it appears.
  • If a User Account Control (UAC) window appears, click Yes.

Step 2Go to the Correct Key

We need to go to a specific location in the registry.

Registry Editor's address bar accepts a specific path to change Windows 11 startup. To adjust Fast Startup, copy and paste `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System` into the address bar and press Enter. This action opens the correct location for modifying the setting.

🗝️Registry
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power

Step 3Find or Create the "HiberbootEnabled" Value

In the right side of the Registry Editor window, look for a setting called 'HiberbootEnabled.' If you find it, double-click it to change its value. If it's not there, right-click in the empty space, choose 'New,' then 'DWORD (32-bit) Value,' and name it 'HiberbootEnabled' before double-clicking it.

  • If "HiberbootEnabled" is there: Double-click on it to change its value.
  • If "HiberbootEnabled" is not there: Right-click in the empty space in the right-hand section, select New, and then select DWORD (32-bit) Value. Name the new value exactly HiberbootEnabled. Then, double-click on this new value.

Step 4Set the Value Data

A small window will open to edit the value.

  • To turn Fast Startup ON: In the "Value data" field, type 1.
  • To turn Fast Startup OFF: In the "Value data" field, type 0.

Make sure the "Base" is set to Hexadecimal (it usually is by default).

Step 5Confirm and Close

After making your changes in the Registry Editor, click 'OK' to save them and then close the editor. It's very important to back up your registry before making any changes. You can do this by going to 'File' > 'Export' and saving a copy, so you can restore it if needed.

You can now close the Registry Editor.

Important Warning: Always make a backup of your registry before making changes. You can do this by going to File Export in the Registry Editor and saving a copy of your registry. If something goes wrong, you can import this backup to restore your registry.

Summary

Fast Startup in Windows 11 speeds up your computer's boot time. You can easily manage Fast Startup by turning it on or off using Control Panel or Registry Editor. If you suspect Fast Startup is causing issues, turning Fast Startup off is a good troubleshooting step.

Should I disable turn on fast startup in 🪟 Windows 11?

Enabling Windows fast startup reduces boot time by hibernating core system files instead of performing a full shutdown. ​ However, disable this feature if: You need to access BIOS/UEFI settings as a full shutdown is required. You experience system lag or high memory usage.

How to enable quick start up?

And sound option here so where it says hardware. And sound you can go ahead and click on that. And some more options will come up and we're looking for power. Options. So select that.

Is it okay to enable fast boot in BIOS?

Since fast boot skips some BIOS checks and tests, it may not detect some hardware changes or updates, such as new drives, cards, or peripherals. This can lead to errors, conflicts, or missing drivers.

Fast Startup in Windows 11 speeds up your computer's boot time by saving system information when you shut down.

Instead of a full shutdown, Windows 11's Fast Startup saves the essential operating system files to a special file named hiberfil.sys. This is the same file used for hibernation.

When you start your PC again, Windows reads this saved information. This process bypasses the usual startup steps, letting Windows, your drivers, and services load much faster. You reach your login screen quicker than with a normal shutdown.

⚡ Quick Answer

Enable or disable Fast Startup in Windows 11 via Control Panel Hardware and Sound Power Options Change what the power button does. Click "Change settings that are currently unavailable," then check or uncheck "Turn on fast startup.

When Fast Startup is Helpful

Fast Startup in Windows 11 helps your computer start up much faster, saving you time when you turn it on. It works by saving some system information when you shut down, so it doesn't have to load everything from scratch the next time. This can make your PC feel quicker, especially if you've noticed it taking a while to boot up.

When You Might Want to Turn Fast Startup Off

Sometimes, you might need to turn off Fast Startup in Windows 11. This feature can occasionally cause issues with hardware drivers not starting correctly, which might make your devices stop working. Also, some important Windows updates need a full restart to install properly, and Fast Startup can sometimes interfere with this process.

Option 1Turning Fast Startup On or Off Through Power Options (The Easiest Way)

This is the most common method. You don't need to deal with complicated settings. You need to be logged in as an administrator to make this change.

Step 1Open Control Panel

The next step is to access the settings that control power. Searching for the setting is a good approach.

Windows 11 Control Panel dashboard showing power options.
Windows 11 Control Panel dashboard showing power options.

Step 2Go to Power Options

Once you have the Control Panel open, the next step is to find the Power Options. If your Control Panel is showing categories, click on 'Hardware and Sound' and then 'Power Options.' If you see large or small icons instead, you can just click directly on 'Power Options.'

Control Panel Power Options window showing power plan settings in Windows 11.
Control Panel Power Options window showing power plan settings in Windows 11.

Step 3Choose What the Power Buttons Do

In the Power Options window, look for a link on the left side.

Step 4Unlock Shutdown Settings

Shutdown settings options may appear grayed out when you access them, which is normal behavior for the Fast Startup feature. This grayed out state indicates that the specific settings related to Fast Startup are not currently available for direct modification through that particular interface.

Change settings that are currently unavailable in Windows 11.
Change settings that are currently unavailable in Windows 11.

Step 5Enable or Disable Fast Startup

The Fast Startup feature in Windows 11 allows you to turn this setting on or off. Find the box labeled 'Turn on fast startup (recommended).' To turn Fast Startup on, check the box. To turn Fast Startup off, uncheck the box.

Turn on Fast Startup option in Windows 11 power settings.
turn off fast startup recommended in windows 11

Step 6Save Your Changes

Don't forget this important step!

Option 2Checking Fast Startup Status with PowerShell

If you're more comfortable using commands, you can quickly check if Fast Startup is on or off using Windows PowerShell. This method is only for checking, not for changing the setting.

Step 1Open Windows Terminal as Administrator

We need a command prompt that has the right permissions.

Step 2Paste the Command

Now, copy and paste the following command into the PowerShell window:

💻Code
(Get-CimInstance -ClassName Win32_PowerSystem -Namespace root\cimv2\power).HiberbootEnabled

Step 3Understand the Result

After you run the command, you'll see the status of Fast Startup. If the output says 'True,' it means Fast Startup is currently turned on. If it says 'False,' Fast Startup is turned off. Keep in mind that if hibernation is disabled on your system, Fast Startup will also be off.

Warning: As mentioned before, if hibernation is turned off on your system, Fast Startup will also be off, even if this command shows "True." Turning off hibernation overrides the Fast Startup setting.

Option 3Using Registry Editor to Control Fast Startup

For those who like to work directly with the system's core settings, you can use the Registry Editor. This method requires caution, as making wrong changes to the registry can cause your system to become unstable.

Step 1Open Registry Editor

Let's access the registry.

Step 2Go to the Correct Key

We need to go to a specific location in the registry.

Registry Editor's address bar accepts a specific path to change Windows 11 startup. To adjust Fast Startup, copy and paste `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System` into the address bar and press Enter. This action opens the correct location for modifying the setting.

🗝️Registry
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power

Step 3Find or Create the "HiberbootEnabled" Value

In the right side of the Registry Editor window, look for a setting called 'HiberbootEnabled.' If you find it, double-click it to change its value. If it's not there, right-click in the empty space, choose 'New,' then 'DWORD (32-bit) Value,' and name it 'HiberbootEnabled' before double-clicking it.

Step 4Set the Value Data

A small window will open to edit the value.

Make sure the "Base" is set to Hexadecimal (it usually is by default).

Step 5Confirm and Close

After making your changes in the Registry Editor, click 'OK' to save them and then close the editor. It's very important to back up your registry before making any changes. You can do this by going to 'File' > 'Export' and saving a copy, so you can restore it if needed.

You can now close the Registry Editor.

Important Warning: Always make a backup of your registry before making changes. You can do this by going to File Export in the Registry Editor and saving a copy of your registry. If something goes wrong, you can import this backup to restore your registry.

Summary

Fast Startup in Windows 11 speeds up your computer's boot time. You can easily manage Fast Startup by turning it on or off using Control Panel or Registry Editor. If you suspect Fast Startup is causing issues, turning Fast Startup off is a good troubleshooting step.

Should I disable turn on fast startup in 🪟 Windows 11?

Enabling Windows fast startup reduces boot time by hibernating core system files instead of performing a full shutdown. ​ However, disable this feature if: You need to access BIOS/UEFI settings as a full shutdown is required. You experience system lag or high memory usage.

How to enable quick start up?

And sound option here so where it says hardware. And sound you can go ahead and click on that. And some more options will come up and we're looking for power. Options. So select that.

Is it okay to enable fast boot in BIOS?

Since fast boot skips some BIOS checks and tests, it may not detect some hardware changes or updates, such as new drives, cards, or peripherals. This can lead to errors, conflicts, or missing drivers.

Was this guide helpful?

📬 Get new Windows tips in your inbox
One email when we publish something worth your time. No spam, unsubscribe anytime.
Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2757 articles → Twitter

📚 Related Tutorials

How to Change What the Power Button Does in Windows 11
Windows How to Change What the Power Button Does in Windows 11
How to Change Power Button Actions on Windows 11
Windows How to Change Power Button Actions on Windows 11
How to Check for Windows 11 Updates
Windows How to Check for Windows 11 Updates
How to Manage Startup Apps in Windows 11 to Improve Boot Speed
Windows How to Manage Startup Apps in Windows 11 to Improve Boot Speed

0 Comments

Leave a Comment

Your email address will not be published. Required fields are marked *