Author Topic: Fix the "Windows Installer Service could not be accessed" Error in Windows 7  (Read 1149 times)

Offline javajolt

  • Administrator
  • Hero Member
  • *****
  • Posts: 35250
  • Gender: Male
  • I Do Windows
    • windows10newsinfo.com


Have you tried to install a program in Windows 7 that uses an MSI file as its installer and instead you saw the above error? Never fear. There is an easy solution and we’re here to help you with it.

First, click on the Start menuand select Run.

NOTE: If you don’t see the Run command on the Start menu, see our posting about adding the Run command to the Start menu.



In the Open edit box on the Run dialog box, enter “cmd” (without the quotes) and click OK.



The Command Prompt window displays. For 64-bit Windows, type the following at the prompt and press Enter.

Quote
%windir%\system32\msiexec.exe /unregister
This unregisters the msiexec.exe file in the C:\Windows\system32 directory.

NOTE: We will show you the commands to enter for 32-bit Windows at the end of the article.



Type the following at the prompt and press Enter.

Quote
%windir%\system32\msiexec.exe /regserver
This re-registers the msiexec.exe file in the C:\Windows\system32 directory.



Type the following at the prompt and press Enter.

Quote
%windir%\syswow64\msiexec.exe /unregister
This unregisters the msiexec.exe file in the C:\Windows\syswow64 directory.



Type the following at the prompt and press Enter.

Quote
%windir%\syswow64\msiexec.exe /regserver
This re-registers the msiexec.exe file in the C:\Windows\syswow64 directory.



To close the Command Prompt window, type “exit” (without the quotes) at the prompt and press Enter.



Reboot your computer. You should now be able to install programs that use MSI installer files.

To fix this problem in 32-bit Windows, open the Command Prompt window as described above. Type the following commands in order, pressing Enter after each:

Quote
msiexec /unregister

msiexec /regserver
Exit the Command Prompt window and reboot your computer to complete the fix.

htg