How to Un-Install software from Windows Safe Mode

Sometimes a computer does not boot properly due to some specific software installed on the computer. You can boot into Windows Safe Mode and uninstall the software.

However, when you attempt to uninstall software when starting Windows in Safe Mode you will get an error saying the MSI Server service is not running.

To resolve type the following in a command prompt:

reg add "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MSIServer" /VE /T REG_SZ /F /D "Service"

reg add "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\MSIServer" /VE /T REG_SZ /F /D "Service"

net start msiserver

*. If the safe mode do not allow runnind “reg add..” from command prompt then just add those keys manually leaving the value reg_sz=”service” empty and remove them after the uninstall complete .

After running these commands you should be able to uninstall software.

Leave a Reply

Your email address will not be published. Required fields are marked *