Reboot Windows 10 in Safe Mode Remotely
1. Access the Remote System:
To reboot a Windows 10 machine into Safe Mode remotely, you need to establish a remote connection. This can be done using tools like Remote Desktop Protocol (RDP) or a third-party remote access software such as TeamViewer, AnyDesk, or LogMeIn.
2. Open the Command Prompt Remotely:
Once connected to the remote system, open the Command Prompt with administrative privileges. You can do this by:
- Pressing
Windows + R
to open the Run dialog. - Typing
cmd
and pressingEnter
. - Right-clicking on Command Prompt and selecting "Run as administrator."
3. Configure Safe Mode Using Command Line:
In the Command Prompt, enter the following command to configure the system to boot into Safe Mode on the next restart:
shellbcdedit /set {current} safeboot minimal
This command sets the boot configuration to Safe Mode with minimal drivers and services.
4. Restart the System:
To apply the changes and reboot the system, use the following command in Command Prompt:
shellshutdown /r /t 0
This command forces an immediate restart of the computer.
5. Verify Safe Mode Boot:
Once the system restarts, it should boot into Safe Mode. If you need to verify this, you can check the System Configuration tool (msconfig) or observe the Safe Mode watermark on the screen.
6. Revert Safe Mode Configuration:
After troubleshooting, you will need to revert the system back to normal boot mode. Open Command Prompt again and enter the following command:
shellbcdedit /deletevalue {current} safeboot
Then restart the system using:
shellshutdown /r /t 0
Additional Considerations:
- Network Drivers: In some cases, you might need network drivers in Safe Mode to perform remote diagnostics or updates. Consider using Safe Mode with Networking if necessary.
- Remote Tools: Ensure that the remote tools you are using are compatible with Safe Mode, as some functionalities might be limited.
By following these steps, you can effectively reboot a Windows 10 system into Safe Mode remotely, enabling you to perform necessary troubleshooting and diagnostics without being physically present at the machine.
Popular Comments
No Comments Yet