The Windows Installer Service could not be accessed

Windows Installer Service Missing: Quick Fix That Works

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.

Related Errors in Windows Errors
Event ID 41 Event ID 41 Kernel-Power: 10-Minute Fix That Actually Works 0X00002044 Active Directory Referral Limit Error 0x00002044 Fixed 0XC01C0015 STATUS_FLT_INSTANCE_NOT_FOUND 0XC01C0015 Quick Fix 0XC00D10B7 Fix NS_E_WMPCORE_BUSY (0XC00D10B7) in Windows Media Player

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.