HOW TO make a program always "Run as Administrator"

Some programs need elevated privileges to perform specific tasks and this can be enabled by making that program "Run as Administrator". I liked this answer which explains why you need to run commands as an administrator even if your account is a member of the Administrator group.

To mark an application to always run as an administrator, do the following:
1. On the Start menu, locate the program that you want to always run as an administrator. 
2. Right-click the application’s shortcut, and then click Properties. 
3. In the Properties dialog box, click the Compatibility tab. 
4. Do one of the following: 
To apply the setting to the currently logged-on user, select the Run This Program As An Administrator check box, and then click OK.
To apply the setting to all users on the computer and regardless of which shortcut is used to start the application, click Change Setting For All Users to display the Properties dialog box for the application’s .exe file, select the Run This Program As An Administrator check box, and then click OK twice.

You cannot mark system applications or processes to always run with administrator privileges. Only non-system applications and processes can be marked to always run at this level. 

To avoid the User Account Control (UAC) warnings, you can disable UAC but it is not recommended. Like in Unix, Linux & Mac, there is a difference between being an administrator and being a "root" user and this is enforced through User Account Control in Windows Vista and above.

Comments