Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C#

Detecting If An Application is Running as An Elevated Process, and Spawning a New Process Using Elevated Permissions

Rate me:
Please Sign up or sign in to vote.
4.80/5 (2 votes)
20 Jan 2012CPOL2 min read 33.8K   6   5
Detecting if an application is running as an elevated process, and spawning a new process using elevated permissions

Recently, I was writing some code to allow a program to register itself to start with Windows for all users. On Windows 7 with User Account Control (UAC) enabled, trying to write to the relevant registry key without having elevated permissions throws an UnauthorizedAccessException exception. If you want to make these sorts of modifications to a system, the application needs to be running as an administrator.

Checking If Your Application is Running with Elevated Permissions

To check if your application is currently running with elevated permissions, you simply need to see if the current user belongs to the Administrator user group.

C#
// Requires "using System.Security.Principal;"
public bool IsElevated
{
  get
  {
    return new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator);
  }
}

public void SomeMethod()
{
  if (this.IsElevated)
  {
    // running as administrator
  }
}

Running An Application as an Administrator

While it might be possible to elevate your applications process via the LogonUser API, this requires user names and passwords, and isn't a trivial task. So we'll ignore this approach in favour of something much more simplistic and less likely to go wrong, not to mention not requiring admin passwords.

You're probably already aware that there are various "verbs" predefined for dealing with specific actions relating to interaction with a file, such as print and open. While these verbs are normally configured on file associations in the Windows Registry, you can also force a process to be run under the administration account by specifying the runas verb.

Note: Specifying this verb in Windows XP displays a dialog allowing a user to be selected. Unfortunately, this means that it's possible for the spawned application to not have the required permissions either - remember to check that you have permission to do an action before actually attempting it!

For my scenario, the core application shouldn't need to run in elevated mode, so I decided to create a generic stub program which would accept a number of arguments for if the startup program should be registered or unregistered, and the title and location used to perform the action. Then, the main application simply spawned this process in administration mode to apply the users' choice.

C#
ProcessStartInfo startInfo;

startInfo = new ProcessStartInfo();
startInfo.FileName = Path.Combine
(Path.GetDirectoryName(Application.ExecutablePath), "regstart.exe"); // replace with your filename
startInfo.Arguments = 
string.Empty; // if you need to pass any command line arguments to your stub, enter them here
startInfo.UseShellExecute = true;
startInfo.Verb = "runas";

Process.Start(startInfo);

Note: Although I haven't included it in the example above, you may wish to handle the Win32Exception that can be thrown by the Process.Start method. If the user cancels the UAC prompt, this exception will be automatically thrown with the ERROR_CANCELLED (1223) error code.

With the runas verb specified, the application is now run in elevated mode, and the operating system asks the user for permission to continue. Unfortunately, if your application isn't signed, then you get a scarier version of the prompt, as displayed above. If your application is signed, then you'll get something similar to the screenshot below.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalneeds improvement, but useful Pin
Sam Varadarajan19-Feb-14 5:59
professionalSam Varadarajan19-Feb-14 5:59 
GeneralRe: needs improvement, but useful Pin
Richard James Moss19-Feb-14 6:00
professionalRichard James Moss19-Feb-14 6:00 
GeneralMy vote of 4 Pin
Sam Varadarajan19-Feb-14 5:56
professionalSam Varadarajan19-Feb-14 5:56 
Questionnot necessarily.. Pin
TheBurf8-Nov-12 10:03
TheBurf8-Nov-12 10:03 
BugRe: not necessarily.. Pin
Richard James Moss29-Nov-12 20:40
professionalRichard James Moss29-Nov-12 20:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.