Uninstall Software In Safe Mode

less than 1 minute read

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:

  1. Reboot the server into Safe Mode and run:

    1
    
    bcdedit /set {bootmgr} displaybootmenu yes
    
  2. On reboot, we can now press F8 to get into Safe Mode.

  3. Check event viewer for critical events and see if they correspond to any installed software, in this case => Anywhere USB

  4. Now edit the registry allow msiinstaller service to run in safe mode:

  5. 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
    
  6. Reboot into safe mode once again and uninstall the software.

  7. Reboot into normal mode and verify the server is no long blue screening.

Tags:

Updated:

Comments