2

I seem to have a bug someone where in my user profile that gives an internal error 2203 C:\Windows\Installer\6f5285.ipi, -2147287035

I am able to get around this by using another account and using runas, but this is awkward, and makes life difficult when I am trying to uninstall programs that are only installed for one user using control panel.

Does anyone have a solution to this problem?

Using Windows 7, UAC is on (off still generates the same error), and I get this when trying to install many programs.

studiohack
  • 13,477
soandos
  • 24,600
  • 29
  • 105
  • 136

2 Answers2

3

So from what I found on the internet is that this error message can be triggered by a few situations:

Situation 1 - NTFS Permissions issue

It is possible that the SYSTEM security user does not have permission to all of the resources needed to install the product. (source1, source2)

There could also be an issue with the permission on the %temp% folder. (source)

Situation 2 - User account Issue

It is possible that there is something wrong with the local profile of the user you created. Something as simple as having the wrong environmental variables could cause a problem. If this is part of a Domain, I would check the GPO settings for this account. If not, I would backup any user data in the profile and delete it. This should rebuild the profile and hopefully give it the proper settings. (source)

Situation 3 - Turn off Admin Approval Mode

In windows, Admin accounts don't operate with admin rights. You must escalate to an admin user in order to access certain protected areas. Even if you turn UAC off, this setting remains on. The only way I know of to turn this off is to go into the registry and modify the EnableLUA key.

Run Registry Editor (RegEdit) and navigate to the following registry key:

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System

Locate the following REG_DWORD value:

EnableLUA

Set the value of EnableLUA to 0.

Source


Hope this helps

Doltknuckle
  • 6,131
0

I just wanted to throw in how I solved my Windows Installer, error 2203 issue.

All of our firm's laptops are using folder/file level encryption.

I had to remove the encryption flag on the %temp% folder.

I can now install programs on this laptop.

Corey
  • 1