Run applications as administrator by default in Windows 10

Updated answer: solving the problem instead of answering the question.

To change the ACLs on the external drive, open its properties and go to the Security tab:

disk properties - security

Notice that Authenticated Users doesn't have "Full control"; only Administrators does, and you're not really a member of Administrators unless elevated. Click Advanced.

advanced security

(The owner will probably be Administrators.) Click Add.

adding a permission entry

Click "Select a principal", and type your username in the box. Check "Full control", then click OK.

Now that we're back in the advanced ACL editor, check the box that replaces child item ACLs. Click OK and accept the warning. Click OK on the properties window, wait for the operation to complete (if there is one), and you're done.

The original (dangerous) answer follows below the line.


Danger! This is almost certainly a bad plan, for reasons explained in Ramhound's comment.

Run gpedit.msc to open the Local Group Policy Editor. Expand Computer Configuration, Windows Settings, Security Settings, Local Policies, and Security Options. Four settings need to be updated:

  1. Set "User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode" to Elevate without prompting.
  2. Set "User Account Control: Detect application installations and prompt for elevation" to Disabled.
  3. Set "User Account Control: Run all administrators in Admin Approval Mode" to Disabled.
  4. Set "User Account Control: Only elevate UIAccess applications that are installed in secure locations" to Disabled.

The LGPE automatically saves all changes, so exit it and reboot.

Again, this is a very insecure configuration that you're creating here.


It looks like there are a few options to run an application as administrator by default that you can try.

  1. Right-click the application's Shortcut >> Go to Properties >> Click the Advanced button on the Shortcut tab >> Check the "Run as administrator" box >> Click OK. -

enter image description here

  1. Right-click the application >> Go to Properties >> Click the Compatibility tab >> Check "Run this program as an administrator" >> Click OK. -

enter image description here

Note: While trying my second option (above), I had one application that didn't initially have the "Run this program as an administrator" checkbox. I had to do the following to get the checkbox to appear and to always run as an administrator:

  1. Click the "Run compatibility troubleshooter" button
  2. Click the "Troubleshoot Program" option
  3. Check the "The program requires additional permissions" checkbox.
  4. Click "Next" and click the "Test the program..." button (to verify the program runs properly).
  5. Click "Next" and click the "Yes, save these settings for this program"

Bill Garrison confirmed that the solution found at How can I run ALL my Apps “as administrator” by default in Windows 7? works for Windows 10. There is at least one other method, you can set UAC to the lowest setting, but doing so also causes the Windows 10 native apps (like the calculator) to fail.

Below is the quoted answer:

Add User To Administrators Group And Remove From Users Group:

  1. Log In As Administrator

  2. Go To Run ( WinKey + R )

  3. Type "control userpasswords2"

  4. Select Your Account And Click On "Properties"

  5. Select "Group Membership" Tab

  6. Select "Administrators"

  7. Click OK And OK

Disable Approval Mode

  1. Log In As Administrator

  2. Go To Run ( WinKey + R )

  3. Type "secpol.msc"

  4. Go To Local Polices > Security Options

  5. Find "User Account Control: Switch to the secure desktop when prompting for elevation"

  6. Open It Click Disable It And Click Ok.

  7. Restart Computer( Very Important Log Off Doesn't Work )


To disable UAC completely, the EnableLUAproperty of

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

in the registry needs to be changed to 0. This disables the "administrator in Admin Approval Mode" user type, thus allowing all administrator users to run their processes as administrators by default.

See also: EnableLUA | msdn.microsoft.com

After doing that, your programs/processes will be run in Administrator mode by default (given that your user is an Administrator), i.e. you will not be having (so much) trouble saving files to certain locations, without launching the respective program specifically as Administrator first.

(from Always run programs as administrator in Windows 10 | Super User)

// ah sorry, this is a duplicate of @ben-n 's original answer - only difference is doing it via the Registry instead of gpedit.msc