How to Disable Fast Startup in Windows (And When You Should)
Fast Startup is a Windows feature that sounds straightforward — it makes your PC boot faster. But for some users, it creates real problems: incomplete driver updates, BitLocker conflicts, dual-boot issues, and hardware that doesn't behave correctly after a restart. Knowing how to disable it, and understanding what it actually does, helps you make a smarter decision about your own setup.
What Fast Startup Actually Does
Fast Startup (sometimes called hybrid boot) was introduced in Windows 8 and carries forward into Windows 10 and Windows 11. It works by combining elements of a traditional shutdown with hibernation.
When you shut down a PC with Fast Startup enabled, Windows doesn't fully close the session. Instead, it saves the kernel session and device drivers to a hibernation file (hiberfil.sys) on your drive. On the next boot, Windows loads from that saved state rather than initializing everything from scratch — which is why startup feels noticeably faster.
Here's the key distinction most users miss: a restart is not affected by Fast Startup. A full restart still closes and reinitializes everything. Only the Shut Down option is modified by this feature.
Why Users Disable Fast Startup
Fast Startup is enabled by default on most Windows installations, but there are legitimate reasons to turn it off:
- Dual-boot systems — If you run Windows alongside Linux, Fast Startup can lock the Windows partition in a way that Linux cannot safely access it. This can prevent Linux from mounting the drive or cause filesystem corruption.
- Windows Updates not applying correctly — Some updates require a full cold boot to install properly. With Fast Startup, a "shutdown" doesn't fully reset the kernel, so update components may not initialize correctly on the next start.
- BitLocker and encryption tools — Certain encryption configurations behave unexpectedly when the system resumes from a hybrid shutdown state.
- Hardware and peripheral issues — USB devices, external drives, or peripherals that don't re-initialize properly after a Fast Startup shutdown are a known category of complaint.
- Troubleshooting — If you're diagnosing a persistent problem, a true cold boot gives you a cleaner baseline to work from.
How to Disable Fast Startup in Windows 10 and 11
There are two reliable methods. ⚙️
Method 1: Power Options in Control Panel
- Open the Control Panel (search for it in the Start menu)
- Go to Hardware and Sound → Power Options
- In the left panel, click Choose what the power buttons do
- Click Change settings that are currently unavailable — this unlocks the shutdown settings
- Under Shutdown settings, uncheck Turn on fast startup (recommended)
- Click Save changes
If the checkbox is grayed out and you can't uncheck it, hibernation is likely disabled on your system. Fast Startup depends on the hibernation file, so if hibernation is off, Fast Startup is already effectively disabled.
Method 2: Command Prompt or PowerShell (Advanced Users)
To disable hibernation entirely — which also disables Fast Startup — open an elevated Command Prompt (right-click → Run as administrator) and run:
powercfg /h off This deletes the hibernation file and removes the Fast Startup option from Power Options. Note that this also disables the Hibernate power state if you use it separately. To re-enable hibernation (and restore Fast Startup as an option), run:
powercfg /h on Method 3: Group Policy (Enterprise and Pro Editions)
On Windows 10/11 Pro, Enterprise, or Education, administrators can disable Fast Startup via Group Policy:
- Open Group Policy Editor (
gpedit.msc) - Navigate to:
Computer Configuration → Administrative Templates → System → Shutdown - Set Require use of fast startup to Disabled
This approach is useful in managed environments where consistent cold-boot behavior is required across multiple machines.
What Changes After You Disable It
Once Fast Startup is off, your Shut Down option behaves like a traditional full shutdown — the kernel session closes completely, drivers are unloaded, and the next boot starts fresh from hardware initialization.
| Scenario | Fast Startup ON | Fast Startup OFF |
|---|---|---|
| Shutdown speed | Faster | Slightly slower |
| Cold boot behavior | Hybrid (partial resume) | Full initialization |
| Windows Updates via shutdown | May not apply fully | Applied correctly |
| Linux dual-boot compatibility | Potential conflicts | Generally compatible |
| Restart behavior | Unaffected | Unaffected |
| Hibernate option | Available | Removed (if /h off used) |
Boot time differences vary considerably by hardware. On systems with NVMe SSDs, cold boot times are already fast enough that disabling Fast Startup is barely noticeable. On older machines with HDDs or SATA SSDs, the difference may be more apparent.
The Variables That Shape Your Decision 🖥️
Whether disabling Fast Startup is the right call depends on factors specific to your machine and how you use it:
- Your storage type — NVMe drives make the speed trade-off almost irrelevant. HDDs make it more meaningful.
- Your OS configuration — Single-boot Windows installs have fewer reasons to disable it than dual-boot setups.
- Your update habits — If Windows Updates frequently stall or behave strangely, Fast Startup is a reasonable variable to eliminate.
- Your hardware peripherals — USB or external storage problems after shutdown are a signal worth paying attention to.
- Hibernation usage — If you rely on the Hibernate power state, disabling hibernation entirely via
powercfgaffects more than just Fast Startup.
The feature isn't inherently problematic — Microsoft enabled it by default for a reason, and on many straightforward setups it works without issue. But "works by default" and "works correctly for your specific configuration" aren't always the same thing.
Your drive type, your partitioning setup, your connected hardware, and what you actually do after shutdown all feed into whether Fast Startup is helping or quietly causing problems you haven't traced back to it yet.