Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Windows Installer Service Could Not Be Accessed? How to Fix It

July 28, 2026

Windows Installer Service Could Not Be Accessed? How to Fix It

The built-in Windows Installer service (msiserver) is used to install software distributed as classic MSI packages (Windows Installer Package format). This service handles the installation, updates, and removal of applications, including registry modifications, file and dependency deployment, service registration, system restore point creation, and so on. If the Windows Installer service is missing, disabled, or corrupted, MSI-based application installations will fail with an error:

The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.

The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed

This article explains how to check the status of the Windows Installer service and how to repair or restore it if needed. We will also cover how to use the Windows Installer service in Safe Mode, which can be used to uninstall system software and antivirus products that cannot be removed during a normal Windows boot.

Contents:
  • Checking the Windows Installer Service Status
  • How to Repair the Windows Installer Service
  • How to Run the Windows Installer Service in Safe Mode

Checking the Windows Installer Service Status

Open the Services snap-in (services.msc) and check that the Windows Installer service is listed. By default, the Windows Installer service in Windows 11 and 10 is configured with the Manual startup type (not Automatic) and starts on demand whenever an application installation is launched from an MSI package or an update is applied using an MSP package.

Windows Installer msiserver service

You can use PowerShell to check whether the service is present and what its status is:

Get-Service msiserver

Also, make sure that the Remote Procedure Call: RPC (rpcss), service is running. This service is required for msiserver to run.

Get-Service msiserver -RequiredServices

Get-Service msiserver

If the service is disabled, you need to change its startup type to Manual. It is not possible to change the startup type of the Windows Installer service using the MMC service management console, because the Start and Startup Type control elements are inactive (grayed out).

Windows installer is disabled and grayed out

You can change the MSIserver service startup type via the Registry:

  1. Open the Registry Editor regedit.exe
  2. Go to HKLM\SYSTEM\CurrentControlSet\Services\msiserver
  3. Change the value of the Start parameter from 4 (service disabled) to 3 (manual start).
  4. Also, check that the value of the ImagePath parameter points to the executable file %systemroot%\system32\msiexec.exe /VChange the msiserver service startup type in registry
  5. Check that this file exists: Test-Path $env:SystemRoot\System32\msiexec.exe Test-Path msiexec.exe
  6. Restart the computer and verify that the Msiserver service’s startup type has been changed to Manual.

How to Repair the Windows Installer Service

If the Windows Installer service is present in Services but not working correctly, re-register it from an elevated Command Prompt using the following commands:

msiexec /unreg
msiexec /regserver
net stop msiserver
regsvr32 /u /s %windir%\System32\msi.dll
regsvr32 /u /s %windir%\System32\msihnd.dll
regsvr32 /u /s %windir%\System32\msisip.dll
regsvr32 /s %windir%\System32\msi.dll
regsvr32 /s %windir%\System32\msihnd.dll
regsvr32 /s %windir%\System32\msisip.dll
net start msiserver

Restart Windows afterward.

If the Windows Installer service is missing from the list of Windows services (for example, if the service has been deleted) or fails to start because its service permissions have been modified, you can try restoring it by importing a registry file (*.REG) that contains the default Msiserver configuration for Windows 11 and Windows 10.

Missing Windows Installer service

Download the archive msiserver_original_win11.zip, extract it, and import the msiserver_original_win11.reg file into the registry. This restores the default registry configuration for the Windows Installer service. After importing the registry file, restart the computer and verify that the Msiserver service starts and operates correctly.

Repair the Windows Installer MSI service entry in registry

If the msiexec.exe executable or any of its required system libraries are missing or corrupted, you should check and repair the Windows system files using the DISM and SFC commands:

DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

How to Run the Windows Installer Service in Safe Mode

In some cases, you may need to forcibly uninstall software installed with Windows Installer, such as antivirus applications or other system software that prevents Windows from booting properly, or that cannot be uninstalled in normal mode. In these cases, you can try uninstalling the application from Safe Mode.

To boot Windows into Safe Mode:

  1. Hold the Shift key and click Restart.
  2. Navigate to Troubleshoot -> Advanced options -> Startup Settings
  3. After the computer restarts, press F4 to boot Windows into Safe Mode

Boot Windows into Safe Mode

If you try to uninstall software using the standard method, or if you force remove the program using the source MSI package, Windows may display the following error:

The Windows Installer Service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.

The Windows Installer Service is not accessible in Safe Mode

This behavior is by design. The Windows Installer service is disabled in Safe Mode to improve system security and stability. While this makes sense in most scenarios, it becomes problematic when you need to remove software that is preventing Windows from booting normally or functioning correctly.

Attempting to start the Windows Installer service manually via the Services (services.msc) tool also fails because the service is not allowed to run in Safe Mode.

Windows could not start the Windows Installer service on Local Computer. Error 1084: This service cannot be started in Safe Mode.

Error 1084: Windows could not start the Windows Installer service in Safe Mode

Fortunately, there is a simple workaround that enables the Windows Installer service in Safe Mode, allowing MSI-based applications to be installed or removed.

To enable the Windows Installer service in Safe Mode:

    1. Open the Registry Editor and go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal (if the device is booted into Minimal Safe Mode) or to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network (if you are using Safe Mode with Networking)
    2. Create a new key named MSIServer
    3. A new parameter named Default will automatically appear in the new reg key. Change its value to Service  Enable Windows Installer in Safe Mode
      Or use the following command to create this registry entry: REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MSIServer" /VE /T REG_SZ /F /D "Service" If you booted your computer into Safe Mode with Networking, create this registry parameter: REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\MSIServer" /VE /T REG_SZ /F /D "Service"
    4. After applying the change, run the Windows Installer service either from the Services console (services.msc) or using the command: net start msiserver How to run Windows Installer in Safe Mode in Windows 10

Once the MSIServer service is running, you can install or uninstall any application that uses the Windows Installer (MSI) engine directly from Safe Mode.

0 comment
0
Facebook Twitter Google + Pinterest
Questions and AnswersWindows 10Windows 11
previous post
Why Windows Reports No Internet Access: How Connectivity Detection Works

Related Reading

How to Move (Migrate) Windows Shares to a...

February 26, 2026

Security Warnings When Opening RDP Files in Windows...

April 20, 2026

Monitor Windows Log Files in Real Time with...

March 26, 2026

Windows Stucks at ‘Getting Windows Ready, Don’t Turn...

September 24, 2025

Stop Windows Server from Auto-Shutdown Every Hour

February 11, 2026

SMB over QUIC: Mount File Share over Internet...

December 24, 2025

Automate Software and Settings Deployment with WinGet Configure...

November 20, 2025

Updating UEFI Secure Boot Certificates on Windows Devices...

April 27, 2026

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Why Windows Reports No Internet Access: How Connectivity Detection Works

    July 26, 2026
  • Inactive TS Ports in Windows: Causes and Fixes

    July 20, 2026
  • Add Wireless Wi-Fi Profiles on Windows Devices via Export/Import or GPO

    July 13, 2026
  • CrowdSec on Windows: From Installation to Threat Blocking

    July 3, 2026
  • Manage Microsoft Store Apps with Store CLI in Windows 11 from Terminal

    July 2, 2026
  • Windows Sandbox on Windows 11: Enable, Configure, and Use

    June 10, 2026
  • How to Monitor Windows Machines with Zabbix

    May 26, 2026
  • Fixing Duplicate Security Identifier (SID) Issues in Windows

    May 25, 2026
  • Monitor a Folder for File Changes Using PowerShell and FileSystemWatcher

    May 15, 2026
  • Protect Windows Server from DDoS and Brute-Force Attacks with IPBan

    May 12, 2026

Follow us

  • Facebook
  • Twitter
  • Youtube
  • Telegram
Popular Posts
  • Converting Windows 10 to Enterprise LTSC Without Losing Data
  • How to Remove ‘Some Settings are Managed by Your Organization’ on Windows 11 or 10
  • Remove the Max Path Length Limit (260-Characters) on Windows
  • Installing Windows without USB/DVD or Other External Drives
  • How to Pause (Delay) Update Installation on Windows 11 and 10
  • Windows Has Reached End of Service but Won’t Update
  • How to Enable or Disable Windows Defender Firewall
Footer Logo

@2014 - 2026 - Windows OS Hub. All about operating systems for sysadmins


Back To Top