Home » How To » Run a Program as Admin Without Admin Password on Windows

Run a Program as Admin Without Admin Password on Windows

With a simple trick, you can let non-admin users run programs requiring administrator rights without giving them the password.

When running a program or application on Windows, if it requires admin privileges, Windows will either show a Yes or No UAC (User Access Control) prompt. For non-admin users. i.e., the Standard users, Windows will display a prompt asking for the admin password.

For example, if you are sharing your computer or have users that use a standard account, they won’t have permission to run applications that requires admin rights. In general, this restriction is a good one as, more often than not, the program that requires administrative privileges needs access to system settings or files.

Though the admin password prompt is good, there might be situations where you need to let non-admin users run programs that require administrative rights. In those cases, rather than manually entering the admin password every time or giving them full administrative privileges, you can use the RunAs command and Windows Credential Manager to allow non-admin users to run a program as admin.

Let me show you how to do it.

Allow a Standard User To Run a Program as Admin Without Password

For non-admin users to run a program that requires admin rights with a password prompt, you need to create a special shortcut with the runas command.

For the shortcut to work, you must enter the admin password for the first time. After that, Windows will not ask for the password, and any user can run the program as an admin without using the admin password.

Though it sounds complicated, it is pretty easy. Just follow the steps, and you will be good.

  1. Right-click on the desktop.
  2. Select the “New” and then “Shortcut” options.
  3. Paste the following command in the blank field. Replace ComputerName, AdminUsername, and dummy path with actual details.
    runas /user:ComputerName\AdminUsername /savecred "C:\path\to\app.exe
  4. Click the “Next” button.
  5. Type a name in the blank field.
  6. Click the “Finish” button.
  7. Double-click the newly created shortcut.
  8. When prompted, type the admin password and press enter.
  9. This will open the application; close it for now.
  10. With that, you’ve created a special shortcut.
  11. Non-admin users can now use this shortcut to run the program as an admin without the admin password.

Steps with more details:

First, we need to create a special shortcut that lets any user run a program as an admin without an admin UAC password prompt. To do that, right-click on the desktop and select the “New → Shortcut” option. This will open the shortcut creation wizard.

right-click on the desktop and select new and then shortcut option

In the Create Shortcut wizard, copy and paste the below code. Don’t forget to replace the Computer Name, AdminUsername, and application path with the actual computer name, admin username, and path of the application’s exe file you’d like to launch with admin privileges.

Click on the “Next” button to continue.

 runas /user:ComputerName\AdminUsername /savecred "C:\path\to\app.exe
Non-admin as admin - enter file path

Now, use the blank name field to name the shortcut anything you want. Click on the “Finish” button.

The above action will create the special custom shortcut we need.

As I said before, for the first time, you need to enter the admin password. So, double-click on the newly created shortcut. You will see a Command Prompt window. Type the admin account password and press the Enter button on your keyboard.

As soon as you do that, the application will open with admin privileges, and Windows saves the authentication details in Credential Manager for future use. You can close the opened program if you don’t need it.

From this point forward, any non-admin user can use the shortcut to launch the target program as an administrator without entering the admin password.

When you no longer need the functionality, simply delete the shortcut, and you are good to go.

Wrapping Up

As you can see, the special shortcut we created will allow a standard user to run a program with admin rights without prompting for a password. Though this trick is handy when you want to allow non-admin users to run programs with admin rights, use it sparingly and only when necessary.

I hope this simple Windows how-to guide helped you.

If you are stuck or need help, send an email, and I will try to help as much as possible.

If you like this article, check out how to enable the hidden administrator account and how to see full user account details in Windows.

6 thoughts on “Run a Program as Admin Without Admin Password on Windows”

    1. Avatar for Bashkarla

      When you try to type the password in the Command Prompt window, it will not show any characters. It just appears as though you are not typing anything. It is the default behavior for passwords on a command-line interface.

      So, just type in the password and press Enter.

  1. Avatar for Lightningtow

    When I open it, it opens CMD for less than a second and shuts itself. When I open properties, it added C:\Windows\System32\runas.exe to what I’ve typed. I don’t know if that’s intentional. I have a few antiviruses, and maybe they objected to applications messing around in System32. Do you know what the issue is?

    Wait when you say “username”, is that the username of the admin account or the username of the account you’re using to run the program?

    1. Avatar for Bashkarla

      It is normal that the Command Prompt window briefly flashes. Whenever you run a command with as admin, it will run directly from System32. It is completely normal.

      As for the username, since you want the shortcut to run the program with admin rights, you need to use the admin username. You can find the available usernames here: C:\Users

    2. Avatar for Edwin Uruchima

      I’m having the same issue. CMD just flashes for a quick second (opens & closes) and I can’t read or type anything.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top