[KB2098] Run Windows Installer Service in Safe Mode

Issue

Solution

The Windows Installer Service needs to be running in order to uninstall in Safe Mode. This solution will start the service.

Follow the steps below to run the installer service from Safe mode:

  1. Start the computer in safe mode.

  2. When Microsoft Windows boots into Safe mode, click Start → All Programs → Accessories. Right-click Command Prompt and choose Run as administrator from the context menu.

  3. To enable the service, modify the following registry key by typing in the command below and pressing the Enter key:

    REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\MSIServer" /VE /T REG_SZ /F /D "Service"
    Network command

    If the "Network” command does not work, substitute "Network" with "Minimal" in the command path:

    REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MSIServer" /VE /T REG_SZ /F /D "Service"
  4. To start the service, type the following command and press the Enter key:

    net start msiserver
  5. The Windows Installer will be started. You can now uninstall programs using your Control Panel or an uninstaller .msi package.

    Figure 1-1