Introduction / Why This Is Needed
Safe Mode is a special Windows boot mode that starts the system with a minimal set of drivers, services, and startup programs. It is indispensable for diagnosing and resolving the following issues:
- Boot errors (blue screen, freezing on the logo)
- Driver or software conflicts
- Malware blocking normal boot
- Password reset or account configuration
In this guide, you will learn how to boot Windows 10 and 11 into Safe Mode using four proven methods, as well as how to use this mode to troubleshoot common problems.
Requirements / Preparation
Before you begin, ensure that:
- You have an administrator account and its password.
- You know your Windows version (10 or 11). Differences in steps are minimal.
- If the system fails to boot normally, prepare a Windows installation media (USB/DVD) to access recovery options.
⚠️ Important: Safe Mode is not intended for everyday use. Some programs and features will be unavailable.
Method 1: From the Sign-in Screen (Easiest)
This method works if the system reaches the sign-in screen.
- On the Windows sign-in screen, press and hold the
Shiftkey. - While holding
Shift, click the power button in the lower-right corner and select "Restart". - After restarting, the "Choose an option" menu will appear.
- Select in sequence:
- "Troubleshoot"
- "Advanced options"
- "Startup Settings"
- "Restart"
- After the next restart, a list of options will appear. Press:
F4— for Safe Mode (minimal driver set)F5— for Safe Mode with Networking (adds network drivers)F6— for Safe Mode with Command Prompt (loads Command Prompt instead of Explorer)
Method 2: Through "Windows Settings" (If System Boots)
If Windows boots normally but you need to enter Safe Mode for diagnostics:
- Open Windows Settings (
Win + I). - Navigate to "Update & Security" → "Recovery".
- Under "Advanced startup", click "Restart now".
- Continue as in Method 1 (steps 3–5).
Method 3: Through Boot Configuration (msconfig)
This method is convenient if you need to permanently configure booting into Safe Mode (e.g., for automatic startup after a reboot).
- Press
Win + R, typemsconfig, and press Enter. - Go to the "Boot" tab.
- Check the box for "Safe boot".
- Select the type:
- Minimal — standard Safe Mode
- Alternate shell — with Command Prompt support
- Network — with networking support
- Click "OK" and restart your computer.
💡 Tip: To return to normal boot, open
msconfigagain and uncheck "Safe boot."
Method 4: Through Command Prompt (Administrator)
Use this method if you have access to an administrative Command Prompt.
- Open Command Prompt or PowerShell as Administrator.
- Enter the command:
For Safe Mode with Networking:bcdedit /set {default} safeboot minimalbcdedit /set {default} safeboot network - Restart the computer.
To return to normal boot:
bcdedit /deletevalue {default} safeboot
Verifying the Result
After booting, confirm you are in Safe Mode:
- In the lower-right corner of the screen, you should see the text "Safe Mode" (or "Safe Mode with Networking").
- Open Task Manager (
Ctrl + Shift + Esc). There will be fewer tabs than in normal mode. - Check that third-party programs from startup are not loading.
Possible Issues
| Issue | Solution |
|---|---|
| Cannot enter Safe Mode — system reboots immediately | Try Method 4 using bcdedit. If that fails, use a Windows installation media to access recovery options. |
| No internet access in Safe Mode | You booted into standard Safe Mode. Restart and select "Safe Mode with Networking" (F5). |
| Forgot administrator password to enter Safe Mode | Safe Mode requires authentication. You need to reset your password via your Microsoft account or use a password disk. |
| System fails to boot after exiting Safe Mode | You likely accidentally changed boot settings. Boot from installation media, open Command Prompt, and run: bcdedit /deletevalue {default} safeboot. |
| Safe Mode doesn't fix the problem (error persists) | The issue may be deeper: corrupted system files, disk error. In Safe Mode, run sfc /scannow and chkdsk /f /r as Administrator. |
How to Use Safe Mode for Diagnostics
Safe Mode is not an end in itself but a tool. Here are typical scenarios:
- Removing malware — run your antivirus in Safe Mode so it can delete files blocked in the normal system.
- Rolling back a driver — if an error appeared after a driver update, in Safe Mode open Device Manager (
devmgmt.msc), find the problematic device, right-click → "Properties" → "Driver" → "Roll Back Driver". - Cleaning startup — open Task Manager → "Startup" tab and disable suspicious programs.
- System Restore — if the problem is recent, try System Restore (
rstrui.exe) to a point when the system was working.
💡 Tip: After fixing the problem, be sure to exit Safe Mode, otherwise the system will continue booting into it.
Final Recommendations
- Safe Mode is a powerful but limited tool. Do not attempt to work with graphic editors or games in it.
- If a problem does not manifest in Safe Mode, the cause is likely a driver or third-party software.
- For persistent access to Safe Mode in case of failures, it is recommended to create a restore point before installing new software.
- In Windows 11/10, "Diagnostic Startup" (similar to Safe Mode but with additional tools) is also available. Enable it via
msconfigon the "Boot" tab → "Diagnostic startup".
You are now ready to use Safe Mode to diagnose and fix Windows errors. This method will save you in 80% of cases where the system fails to boot due to software conflicts.