You can use the runas command.

runas /user:Administrator "control appwiz.cpl"

It will prompt for a password then launch Add/Remove Programs with Administrator's credentials. There are other control panel applets you might need to launch this way as well.

You can also hold shift while right-clicking the applets and most of them allow you to choose "Run As".

Answer from Stephen Jennings on serverfault.com
🌐
Reddit
reddit.com › r/sysadmin › running programs and features as admin / windows 10
r/sysadmin on Reddit: Running programs and features as admin / windows 10
June 18, 2020 -

Hey,

Seeing as non-administrators aren't allowed to uninstall programs, how would you 'run as' the programs & features applet?

Running appwiz.cpl from an elevated cmd prompt doesn't work. The only method that seemingly does it killing explorer.exe and running it again as an admin user, this breaks network drive mappings and causes other undesirable effects.

I could simply log the user off and log in with an admin account to uninstall the program, but this just seems so long winded.

Are there any other, easier solutions?

Thank You

🌐
Virtually Impossible
virtuallyimpossible.co.uk › using-an-elevated-command-prompt-to-open-add-remove-programs
Using an elevated command prompt to open Add Remove Programs - Virtually Impossible
May 30, 2012 - You will be prompted for the domain administrator password. Type said password and press enter. Once the elevated command prompt appears, type control appwiz.cpl to open the Add/Remove Programs control panel.
Discussions

Uninstalling a Program NOT Logged in As Admin
I know this is going to be an easy answer, but I just can’t find the answer anywhere. OK, back in the Windows XP days, inside Control Panel, you could hold the shift key, right click on Add/Remove Programs, log in as an admin, then uninstall a program. Windows 7 does not have this. More on community.spiceworks.com
🌐 community.spiceworks.com
18
5
October 8, 2010
Can't uninstall programs as says need Administrator Rights
Hello, I am only one administrator and user of my own laptop. However it appeared that i can not uninstall programs (i recently downloaded a video editor which i no longer need). System keep telling me that i can not do it and Please contact your… More on learn.microsoft.com
🌐 learn.microsoft.com
3
46
March 18, 2023
Add/remove programs without local admin? A.K.A Where is Run As different user for add/remove
Hit Windows Key Type "appwiz.cpl" CTRL+SHIFT+Right Click "Run as administrator..." Enter your admin details More on reddit.com
🌐 r/sysadmin
7
2
August 18, 2015
How to run an uninstall program as an administrator?
I had a super old game on disc that I was trying to install and run, the former happened and I couldn't make the latter happen, so I tried to just uninstall the game altogether. Windows asks me if I want to let rundll32 edit files, and I click yes, and I… More on answers.microsoft.com
🌐 answers.microsoft.com
2
3
December 4, 2022
Top answer
1 of 2
8

Is there any particular reason you're trying to do this from the command-line as opposed to built-in features available in the UI? Also, might there be a system policy that's preventing you from performing these operations?

Here's a suggestion using the UI:

  1. Open the Start Menu
  2. In the Search Bar, type appwiz.cpl.
  3. Wait for appwiz.cpl to appear in the search results. There should be only one entry at the top, under "Programs". It should have a document icon with some gears on it, and should be automatically highlighted.
  4. With appwiz.cpl highlighted in the search results, press CTRL+SHIFT+ENTER. This will force Windows to attempt executing appwiz.cpl with Administrator privileges.
  5. Respond to any UAC prompts as appropriate.

If the above does not work, there may be an issue with your system's Security Policy. Do the following to check:

  1. Log into the system under an account that has Administrator permissions.
  2. Press Win+R.
  3. Type secpol.msc and hit ENTER.
  4. Respond to any UAC prompts as appropriate.
  5. In the left pane, navigate the tree to the following location:

    Security Settings\Local Policies\Security Options

  6. Find the "User Account Control" options, near the bottom of the list.
  7. Check the setting User Account Control: Behavior of the elevation prompt for standard users
    • If it is set to Automatically deny elevation requests, you will not be able to use Administrator permissions while running under a standard user account.
    • If this is set to any of the Prompt for credentials... settings, and the above process for running appwiz.cpl elevated still does not work for you, then you may have a different problem.
2 of 2
5

For whatever reason, the control panel applets inherit the privileges of the running Desktop shell (which is the Windows equivalent of a window manager). To escalate permissions in the control panel, you have to escalate permissions in this shell, via these steps:

  1. Open a command prompt as an administrative user
  2. Kill the running explorer process
    1. Ctl+Shift+Esc Open task manager, and navigate to the processes tab
    2. Find the explorer.exe process(es), and kill all of them. (Right-click, choose End Process) Your taskbar, desktop, and explorer windows will all disappear, but your command prompt will remain
  3. From that admin command prompt, run explorer.exe
  4. Now, you should be able to open appwiz.cpl, or any other control panel applet with administrative privileges.
  5. When you're done, kill the running explorer process(es), and run explorer.exe as the logged-in user.

Caveat: This can lose certain settings, or break your normal desktop environment. For instance, any network paths which have been mounted to a drive will be lost.

🌐
Spiceworks
community.spiceworks.com › software & applications
Uninstalling a Program NOT Logged in As Admin - Software & Applications - Spiceworks Community
October 8, 2010 - OK, back in the Windows XP days, inside Control Panel, you could hold the shift key, right click on Add/Remove Programs, log in as an admin, then uninstall a program. Windows 7 does not have this.
🌐
Seven Forums
sevenforums.com › general-discussion › 404760-how-run-add-remove-programs-administrator-elevated.html
How to run add remove programs as administrator (elevated)? - Windows 7 Help Forums
January 26, 2017 - It does a very complete job removing most programs. The FREE version is fine IMO. If you want more then the Pro version may be a good choice. Thanks!- I have Revo free installed, but have had mixed results... in the past (ESS may be the culprit!?). I'll try Revo as Admin, After I 1st make a Macrium Reflect backup? ... System Manufacturer/Model Number: ZT Desktop OS: Windows 7 Pro (32) CPU: i7/2600 Motherboard: Intel Memory: 4gb Graphics Card: 512mg (add ...
Find elsewhere
🌐
DEV Community
dev.to › vigneshwaran_vijayakumar › run-appwizcpl-as-administrator-with-elevated-rights-on-windows-11-bo5
Run Appwiz.cpl as Administrator With Elevated Rights on Windows 11! - DEV Community
December 27, 2024 - Running Appwiz.cpl as an administrator is useful when you need to perform tasks that require elevated permissions to manage system-level programs, uninstall certain applications, or modify settings that affect the entire system as this command is related to the Programs and Features. The functionalities include uninstalling system or protected applications , modifying programs for all users , Managing Windows Features , Advanced Troubleshooting , etc. ... While opening appwiz.cpl as Administrator on Windows 11 grants it elevated privileges , which can potentially bypass system security restrictions.
🌐
Reddit
reddit.com › r/sysadmin › add/remove programs without local admin? a.k.a where is run as different user for add/remove
r/sysadmin on Reddit: Add/remove programs without local admin? A.K.A Where is Run As different user for add/remove
August 18, 2015 -

Hello,

We are in the process of planning to remove local admins rights for windows 7 domain users from their desktops. So far so good, and we are getting to grips with installations using 'run as different user' and taking installs out of the login script. However, we cannot fathom out how to uninstall a program without having to log the user off, login with admin account, perform the uninstall and then log them back in again. Does anyone know of a way to do it from the same session? Ta.

🌐
Webroot
answers.webroot.com › Webroot › ukp.aspx
Appwiz.cpl explanation
Appwiz.cpl is a run command shortcut to open the Add/Remove Programs or Uninstall a Program list on Microsoft Windows XP, Vista, 7, 8, and 10. To use the appwiz.cpl command on your computer, press the Windows Key ( ) + R on your keyboard at the same time. The Run Command window should come up.
🌐
SiliconANGLE
siliconangle.com › 2016 › 02 › 03 › windows-10-tips-and-tricks-how-to-uninstall-apps-and-programs
Windows 10 tips and tricks: How to uninstall apps and programs - SiliconANGLE
February 3, 2016 - Click Start > All apps > Windows PowerShell > right click Windows PowerShell > click Run as administrator. Click Yes when the window appears asking if you want this app to make changes to your computer.
🌐
Scia
help.scia.net › 19.1 › en › inst › installation_tryout › uninstalling_with_addremove_programs.htm
3.1 Uninstalling with Add/Remove Programs in Windows
In the dialog box that appears choose the option Remove · Press [Next] to start the uninstall procedure. After completing the uninstallation, some settings remain in the Registry of windows. These traces can be deleted manually. Deleting these entries can be necessary when problems occur with a new installation. ... Take note, for this step it is required to have Administrator ...
🌐
Wise Cleaner
wisecleaner.com › how-to › 278-how-to-uninstall-an-app-with-administrator-privileges-on-windows-11.html
How to Uninstall an App with Administrator Privileges on Windows 11
Type “cmd” or “powershell” in the Search box on the Taskbar, and right-click on the matching result then select Run as administrator. Type and enter the following command to list all installed programs on your system:
🌐
Windows Command Line
windows-commandline.com › run-command-for-add-or-remove-programs
Run command for add or remove programs
September 21, 2016 - Using Add or remove programs wizard we can install new features of the Windows(which are not installed by default) and also uninstall programs that are no longer needed. We can open this wizard from Run window by running the command appwiz.cpl
🌐
Super User
superuser.com › questions › 1517808 › how-can-i-perform-an-uninstall-as-an-administrator-with-superuser-privileges-but
windows 10 - How can I perform an uninstall as an administrator with superuser privileges but without an administrator account? - Super User
I've had an easier time redownloading the installer and running it as an administrator to be able to uninstall. I now save my installers so that I can uninstall if needed. ... Your solution conflicts with what you said you wanted. You indicated you wanted to uninstall software without being an Administrator.
🌐
Windows 10 Forums
tenforums.com › software-apps › 197769-i-am-admin-but-cant-uninstall-app.html
I am an admin, but can't uninstall an app - Windows 10 Help Forums
September 7, 2022 - So. I am an admin on my own personal PC, yet when I go to uninstall an app by going into Add or Remove Programs, or running the 'unwise' app in the app's folder directly, I get a red and white box that says that an administrator (funny, I am the only one