Uninstall a program from safemode
Created: 2020-04-30 09:53:26 | Last modified: 2020-05-05 08:58:45 | By: NovaAccess: Read | Visibility: Unlisted, Group | Views: 84 | Rating: N/A | Tags: windows safemode
Windows safe mode doesn't let you uninstall programs by default, Here is how to uninstall a program in safe mode.
When in windows safe mode it doesn't allow to uninstall programs or drivers. To do this you need to run a few commands to get the MSI server running
Open a command prompt and enter in the following REGEDIT commands
For Safe Mode without networking
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MSIServer" /VE /T REG_SZ /F /D "Service"
For Safe Mode WITH networking
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\MSIServer" /VE /T REG_SZ /F /D "Service"
Now start the MSI Service
net start msiserver
You should now be able to open Programs and Features to uninstall programs as required.