My Vista application needs to know whether the user has launched it "as administrator" (elevated) or as a standard user (non-elevated). How can I detect that at run time?
|
feedback
|
|
For those of us working in C#, in the Windows SDK there is a "UACDemo" application as a part of the "Cross Technology Samples". They find if the current user is an administrator using this method:
(Note: I refactored the original code to be a property, rather than an "if" statement) | |||||||||||
feedback
|
|
The following C++ function can do that:
| |||
feedback
|
|
The IsUserAnAdmin function might also be helpful. http://msdn.microsoft.com/en-us/library/windows/desktop/bb776463%28v=vs.85%29.aspx | |||
|
feedback
|