Uninstall Software In Safe Mode
Description:
Follow these steps to uninstall software in safe mode. I’m not sure what all software you can uninstall, but the way I found this is we had a server that would bluescreen after a user logs in. The way we fixed was:
To Resolve:
-
Reboot the server into Safe Mode and run:
1
bcdedit /set {bootmgr} displaybootmenu yes
-
On reboot, we can now press
F8
to get into Safe Mode. -
Check event viewer for critical events and see if they correspond to any installed software, in this case => Anywhere USB
-
Now edit the registry allow
msiinstaller
service to run in safe mode: -
Regedit
1 2 3 4 5
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\ Create key = MSIServer Create a String key (REG_SZ) = Service Uninstall Software
-
Reboot into safe mode once again and uninstall the software.
-
Reboot into normal mode and verify the server is no long blue screening.
Comments