Safe Mode in Windows 11 restricts startup to essential drivers and services, making it a vital tool for diagnosing and resolving system problems. By default, entering Safe Mode requires navigating through the recovery environment or using specific key combinations, which can be time-consuming or inaccessible if Windows fails to boot normally. Adding Safe Mode directly to the boot menu simplifies the process, allowing users to select Safe Mode options right from the startup screen without extra steps or repeated reboots.
Add Safe Mode to the Boot Menu Using Command Prompt
Command Prompt (Admin) or Windows Terminal (Admin). This step is necessary because modifying boot options requires administrator privileges.
bcdedit

This displays all boot entries. Look under the Windows Boot Loader section for your main Windows 11 installation. Note the value for identifier (commonly {current} or {default}).

{identifier} with your actual identifier from Step 2, and choose a descriptive name. For standard Safe Mode, run: bcdedit /copy {identifier} /d "Windows 11 Safe Mode"

For Safe Mode with Networking, use:
bcdedit /copy {identifier} /d "Windows 11 Safe Mode with Networking"

For Safe Mode with Command Prompt:
bcdedit /copy {identifier} /d "Windows 11 Safe Mode with Command Prompt"

After running the command, note the new identifier returned in the output (e.g., {7c52bbce-ad1e-11ec-82f6-00155d001106}), as you’ll need it for the next step.
For Safe Mode with Command Prompt:
bcdedit /set {new-identifier} safeboot minimal
bcdedit /set {new-identifier} safebootalternateshell yes

For Safe Mode with Networking:
bcdedit /set {new-identifier} safeboot network

For standard Safe Mode:
bcdedit /set {new-identifier} safeboot minimal

This configures the new boot entry to launch Windows in the selected Safe Mode configuration.
bcdedit /timeout 10

This ensures you have time to select the desired boot option when starting your PC.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →Remove Safe Mode from the Boot Menu
If you later decide to remove the Safe Mode entries from your boot menu, repeat Step 1 to open an elevated Command Prompt. Then list all boot entries:
bcdedit

Find the identifier for the Safe Mode entry you wish to remove (e.g., {7c52bbce-ad1e-11ec-82f6-00155d001106}). Run the following command to delete it:
bcdedit /delete {identifier}

This will remove the Safe Mode option from your boot menu.
Alternative Methods for Accessing Safe Mode
Using System Configuration (msconfig)
For users who prefer a graphical interface, the System Configuration tool, also known as msconfig, provides another way to set Windows to boot into Safe Mode.

Boot tab. Under “Boot options,” check the Safe boot box. You can select additional options, such as Network for Safe Mode with Networking or Alternate shell for Safe Mode with Command Prompt.
OK and restart your computer. Windows will boot directly into the selected Safe Mode configuration.Enable Legacy F8 Boot Menu
Windows 11 disables the classic F8 key boot menu by default, but you can restore it for quick access to advanced startup options.

bcdedit /set {default} bootmenupolicy legacy

This enables the legacy text-based boot menu. On startup, repeatedly press F8 to access Safe Mode and other options.
bcdedit /set {default} bootmenupolicy standard

Accessing Safe Mode When Windows Fails to Boot
If Windows 11 cannot boot normally, it will attempt to launch the Windows Recovery Environment (WinRE) after three consecutive failed startups. To trigger this manually, power on your PC and, as soon as you see the Windows logo, hold the power button to force shutdown. Repeat this process three times. On the next startup, Windows will enter WinRE.
In WinRE, select Troubleshoot > Advanced options > Startup Settings > Restart.

After your PC restarts, a menu will appear. Press 4 or F4 for Safe Mode, 5 or F5 for Safe Mode with Networking, or 6 or F6 for Safe Mode with Command Prompt.

Adding Safe Mode to the boot menu in Windows 11 provides a reliable, accessible way to troubleshoot startup issues without relying on complicated key sequences or repeated reboots. This setup streamlines recovery and makes system repair much more straightforward.






