The Windows Installer Service could not be accessed

Windows Installer Service Missing: Quick Fix That Works

Windows Errors Beginner 👁 5 views 📅 Jun 30, 2026

This error pops up when Windows Installer service is stopped or corrupted. Restarting it through Command Prompt usually fixes it in 2 minutes.

Yeah, I know — you're trying to install something and Windows throws that "Windows Installer service could not be accessed" crap. It's frustrating. But here's the thing: I've seen this a hundred times, and the fix is stupid simple. No downloads, no tools.

The Fix: Restart the Service via Command Prompt

Open Command Prompt as Administrator. Don't skip that part — it won't work without admin rights.

  1. Press Win + R, type cmd, then hit Ctrl + Shift + Enter.
  2. Run these two commands, one after the other:
msiexec /unregister
msiexec /regserver

The first command unregisters the Windows Installer from the registry. The second one registers it fresh, which reloads the service. Wait 10 seconds after each. Then close the window.

That's it. Try installing your software again. Usually works right away.

Why This Works

Windows Installer is a core system service that handles .msi installers. Sometimes its registry entries get corrupted — maybe after a Windows update, or a bad uninstall. The service itself is still there, but the registry pointers are broken. By unregistering and re-registering, you rebuild those pointers. No reboot needed.

The culprit here is almost always a third-party uninstaller tool (like Revo Uninstaller or CCleaner) that deleted the wrong registry keys. Or a failed Windows update that left things half-baked.

Less Common Variations

Sometimes the service is just stopped. Check that first.

Service Is Disabled

Open services.msc, look for "Windows Installer". If it's not running, right-click it and select Start. If it's set to Disabled, change it to Manual (that's the default).

Corrupted Service Files

If the service won't start at all, the msiexec.exe file itself might be damaged. On Windows 10 and 11, run this command in an admin Command Prompt:

sfc /scannow

This checks system files. If it finds issues, it'll replace the bad ones. Then try the first fix again.

Third-Party Software Blocking It

I've seen antivirus tools like McAfee or Norton block the Windows Installer service. Temporarily disable your antivirus, then try the fix. Re-enable it after. Don't leave it off.

Registry Permissions

Advanced one: open Win + R, type regedit. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\msiserver. Right-click msiserver and select Permissions. Make sure your user account has Full Control. This is rare but happens after a malware cleanup.

Prevention

Stop using aggressive uninstaller tools. They screw up the registry. If you must, create a system restore point first. Also, keep Windows updates current — Microsoft fixed a lot of installer bugs in the 2023 and 2024 patches.

One more thing: if you get this error in Safe Mode, it's normal. Windows Installer doesn't run in Safe Mode. Boot normally and try again.

That's the whole playbook. You'll be fine.

Was this solution helpful?