Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What precisely does 'Run as administrator' do? [closed]

On Windows 7, I have a command-line program that fails due to file write permission errors, and popping up annoying UAC dialogs every time I run command-line programs that are from an 'unknown publisher'.

However, if I start my console by right clicking and choosing 'run as administrator', then the install works fine, even if the UAC dialogs are still present.

My user is already a member of the 'administrators' group, so what precisely does 'run as administrator' do that makes my install work?

My specific question is precisely: What does 'run as administrator' do? Neither of the answers thus far address this. (for example, does it run the new process as the 'Administrator' user? Or does it run the process as the current user, but with elevated privileges? If so, what privileges? How does that differ from the privileges I get from my user being in the 'Administrators' group?

(Specifically, I'm using the 'Console' from SourceForge, not a regular CMD window, but I don't think that's important. This is all while installing the Python 'distribute' package by running 'python distribute_setup.py' on a newly installed Python3 MSI from python.org. It's a 32-bit Python on 64-bit Windows. See Installing Python and distribute on Windows 7 gives "Writing failed ... permission denied")

like image 336
Jonathan Hartley Avatar asked Jan 24 '12 12:01

Jonathan Hartley


People also ask

What does run as administrator actually do?

So when you run an app as an administrator, it means you are giving the app special permissions to access restricted parts of your Windows 10 system that would otherwise be off-limits.

What happens when game run as administrator?

Run the game with administrator rights Administrator rights will ensure that you have full read and write privileges, which can help with issues relating to crashes or freezes. Verify game files Our games run on dependency files that are required to run the game on a Windows system.

What is the difference between run as administrator and open?

When you select "Run as Administrator" and your user is an administrator the program is launched with the original unrestricted access token. If your user is not an administrator you are prompted for an administrator account, and the program is run under that account. Hope the information is helpful.

Is run as administrator permanent?

You can run a program once as an administrator, or you can set a program to permanently run as an administrator.


1 Answers

When you log on Windows creates an access token. This identifies you, the groups you are a member of and your privileges. And note that whether a user is an administrator or not is determined by whether the user is a member of the Administrators group.

Without UAC, when you run a program it gets a copy of the access token, and this controls what the program can access.

With UAC, when you run a program it gets a restricted access token. This is the original access token with "Administrators" removed from the list of groups (and some other changes). Even though your user is a member of the Administrators group, the program can't use Administrator privileges.

When you select "Run as Administrator" and your user is an administrator the program is launched with the original unrestricted access token. If your user is not an administrator you are prompted for an administrator account, and the program is run under that account.

like image 184
arx Avatar answered Sep 24 '22 01:09

arx