Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#
Tip/Trick

Is Your App Running As Administrator?

Rate me:
Please Sign up or sign in to vote.
4.81/5 (32 votes)
24 Jan 2011CPOL 63.6K   41   11
How to make your app detect whether or not it's running in admin mode.
Once again, I was working on a future CodeProject article, and decided that I wanted to force one of the applications in the solution to be run in admin mode so that the processing in that application could be performed without interference from the UAC. Because the whole application needs to run in admin mode, and because there may be times when I might want to run several subsequent forms from the Main method, I put this code into the Main method so that the form(s) won't even run if the app isn't in admin mode. Doing it this way also keeps me from having to add special code to any form that might become the main form. Here's the main method, in all it's glory.

C#
using System.Security.Prinicipal;

[STAThread]
static void Main()
{
    try
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);

        WindowsIdentity  identity  = WindowsIdentity.GetCurrent();
        WindowsPrincipal principal = new WindowsPrincipal(identity);
        if (!principal.IsInRole(WindowsBuiltInRole.Administrator))
        {
            MessageBox.Show("You must run this application as administrator. Terminating.");
            Application.Exit();
        }

        Application.Run(new FormMain());
    }
    catch (Exception ex)
    {
        if (ex != null) {}
    }
}

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) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Carsten V2.03-Jul-12 19:32
Carsten V2.03-Jul-12 19:32 

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.