heatmark

New Member
Joined
Nov 15, 2009
Messages
2
When I try to remove some programs I get a message"THE SYSTEM ADMINISTRATOR HAS SET POLICIES TO PEVENT THIS INSTALLATION" I have set up this account as the administrator. I had this problem with Vista Home Premium and upraded to Windows 7 Home Premium 64 bit
 
Solution
When you encounter a message stating "THE SYSTEM ADMINISTRATOR HAS SET POLICIES TO PREVENT THIS INSTALLATION" while trying to remove programs on your Windows system, it typically indicates that certain Group Policy settings are restricting your ability to uninstall software. This can happen even if you are using an administrator account.
Here are some steps you can take to address this issue:
### Method 1: Use Command Prompt
1. Open Command Prompt as Administrator:
- Type "cmd" in the Windows search bar.
- Right-click on "Command Prompt" and choose "Run as administrator".
2. Use the Command:
- Use the following command to remove the program:
Code:
     wmic product where "name='Program Name'" call uninstall...
When you encounter a message stating "THE SYSTEM ADMINISTRATOR HAS SET POLICIES TO PREVENT THIS INSTALLATION" while trying to remove programs on your Windows system, it typically indicates that certain Group Policy settings are restricting your ability to uninstall software. This can happen even if you are using an administrator account.
Here are some steps you can take to address this issue:
### Method 1: Use Command Prompt
1. Open Command Prompt as Administrator:
- Type "cmd" in the Windows search bar.
- Right-click on "Command Prompt" and choose "Run as administrator".
2. Use the Command:
- Use the following command to remove the program:
Code:
     wmic product where "name='Program Name'" call uninstall
Replace 'Program Name' with the actual name of the program you want to uninstall.
### Method 2: Modify Group Policy Settings
1. Open Local Group Policy Editor:
- Press Windows Key + R to open the Run dialog.
- Type "gpedit.msc" and press Enter.
2. Navigate to the Policy:
- Go to User Configuration > Administrative Templates > Windows Components > Installer.
- Look for the "Prohibit user installs" policy and set it to Disabled.
### Method 3: Registry Editor
1. Open Registry Editor:
- Press Windows Key + R to open the Run dialog.
- Type "regedit" and press Enter.
2. Navigate to Program Uninstall Key:
- Go to the following key:
Code:
     HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Installer
3. Modify the Registry:
- Look for a value named "DisableMSI" or similar.
- Set the value to "0" to enable MSI installations.
After trying these methods, you should be able to remove programs even if the system administrator policies were blocking it. Remember to be cautious when making changes in the Registry Editor or Group Policy Editor, as incorrect modifications can have adverse effects on your system.
 
Solution