In this quick guide I will show you how to add safe mode to your right click menu.
Create and run batch file.
Open a notepad and copy the entire content of the code box below.
Do not copy the word code!
Paste the txt into the notepad. Save the file to your desktop as BootToSafeMode.bat
Now you will right click the on BootToSafeMode.bat and run as administrator.
Code:
@echo off
reg add "HKLM\SOFTWARE\Classes\Directory\Background\shell\SafeMode" /ve /d "Boot to Safe Mode" /f
reg add "HKLM\SOFTWARE\Classes\Directory\Background\shell\SafeMode\command" /ve /d "shutdown /r /o /f /t 0" /f
reg add "HKLM\SOFTWARE\Classes\Directory\Background\shell\SafeMode" /v "Icon" /d "shell32.dll,43" /f
taskkill /f /im explorer.exe
start explorer.exe
echo Done! You can now right-click on the desktop and select "Boot to Safe Mode" to reboot into safe mode.
pause
After the batch finishes, it will display the message: "Done! You can now right-click on the desktop and select 'Boot to Safe Mode' to reboot into safe mode."
It's that simple, now you will be able to right click an empty space on your desktop and boot your windows 10 or 11 computer to safe mode.