How to Disable Fast Startup in Windows (And When You Should)

Fast Startup is one of those features that quietly shapes your computing experience without most users ever knowing it exists. For many people, it works fine in the background. For others, it causes real problems — from USB devices not being recognized after boot to dual-boot systems behaving unpredictably. Understanding what it actually does is the first step to deciding whether disabling it makes sense for your situation.

What Is Fast Startup and How Does It Work?

Fast Startup (sometimes called Fast Boot) is a Windows feature introduced in Windows 8 and carried forward into Windows 10 and Windows 11. It's designed to reduce the time it takes for your PC to boot after a shutdown.

Here's the key detail most people miss: when Fast Startup is enabled, shutting down your PC isn't the same as a full shutdown. Instead of completely clearing system memory and closing all processes, Windows saves a snapshot of the kernel session (the core operating system state) to a file called hiberfil.sys on your drive. The next time you power on, Windows loads that file rather than doing a cold boot from scratch — which is faster, but also means the system never fully resets.

A restart, by contrast, does perform a full shutdown cycle even with Fast Startup enabled. This is why IT troubleshooting steps often say "restart, don't just shut down" — because those are genuinely different operations when Fast Startup is active.

Common Reasons to Disable Fast Startup ⚡

Fast Startup causes friction in specific scenarios:

  • Dual-boot setups — If you run Windows alongside Linux or another OS, Fast Startup can lock the Windows partition, making it unreadable or causing filesystem errors from the second OS.
  • Driver and hardware issues — Peripherals like external drives, keyboards, or USB hubs may not initialize correctly when the system resumes from a saved state rather than a clean boot.
  • Windows Update problems — Some updates require a complete system reset to apply properly. Fast Startup can interfere with this process.
  • BIOS/UEFI access — On some systems, Fast Startup bypasses the firmware boot menu, making it difficult or impossible to enter BIOS settings at startup.
  • Unexplained system instability — If your PC behaves oddly after a "shutdown," a full cold boot (with Fast Startup off) can rule out state-related issues.

How to Disable Fast Startup in Windows 10 and Windows 11

The steps are nearly identical across both versions.

Method 1: Through Power Options (Most Common)

  1. Open the Start Menu and search for "Control Panel"
  2. Go to Hardware and SoundPower Options
  3. In the left sidebar, click "Choose what the power buttons do"
  4. Click "Change settings that are currently unavailable" (you'll need admin rights)
  5. Under Shutdown settings, uncheck "Turn on fast startup (recommended)"
  6. Click Save changes

That's it. Your next shutdown will be a full shutdown.

Method 2: Through the Registry

For users comfortable editing the registry — or for IT environments managing multiple machines — Fast Startup can be controlled via:

Path:HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerPowerValue:HiberbootEnabledSet to:0 to disable, 1 to enable

Always back up the registry before making changes.

Method 3: Via Group Policy (Enterprise/Pro Editions)

On Windows 10/11 Pro or Enterprise, you can use the Local Group Policy Editor (gpedit.msc):

Navigate to: Computer Configuration → Administrative Templates → System → Shutdown

Enable the policy: "Require use of fast startup" — then set it to Disabled.

What Changes After You Disable It

BehaviorFast Startup ONFast Startup OFF
Shutdown behaviorPartial hibernateFull power-off
Boot speedFaster (loads saved state)Slightly slower
Dual-boot compatibilityOften problematicGenerally stable
BIOS access at startupMay be blockedAccessible normally
System state after bootCarried over from last sessionFully fresh
Windows updates on shutdownMay not apply cleanlyApply as expected

The speed difference varies significantly by hardware. On a modern NVMe SSD, the gap between Fast Startup on and off is often just a few seconds — barely noticeable. On an older HDD-based system, Fast Startup can shave off considerably more time, so the trade-off is more meaningful there.

A Note on Hibernation vs. Fast Startup

These two features are related but distinct. Fast Startup uses hibernation technology internally, but it only saves the kernel session — not your open apps or desktop state. Full hibernation saves everything, including open windows and running applications.

Disabling Fast Startup does not disable hibernation. If you want to disable hibernation entirely (which also removes hiberfil.sys and frees disk space), that's done separately via an elevated Command Prompt: powercfg /hibernate off. Be aware this will also disable Fast Startup and the Hibernate option in the power menu simultaneously.

The Variables That Determine Whether This Matters for You 🔧

Whether disabling Fast Startup is the right call depends on factors that vary from machine to machine:

  • Storage type — The speed benefit is much more pronounced on HDDs than SSDs. Users with fast NVMe drives may notice almost no difference.
  • OS configuration — Dual-boot users and those frequently accessing BIOS settings have stronger reasons to disable it.
  • Hardware age and driver stability — Older systems with finicky drivers are more likely to experience issues tied to Fast Startup's partial-state boot.
  • How you actually power down — If you always restart rather than shut down, Fast Startup may already have little effect on your workflow.
  • IT or enterprise context — Managed environments often disable it by policy for consistency and update reliability.

The right configuration isn't universal — it depends on what your machine is doing, how old the hardware is, and what problems, if any, you're currently experiencing.