vote up 5 vote down star
1

Is there a canonical way to test to see if a user has administrative privilege on a machine? I'm going to be starting a long running process, and much later in the process' lifetime it's going to attempt some things that require admin privileges.

I'd like to be able to test up front if the user has those rights rather than later on.

flag

63% accept rate
What OS version? – John Saunders Jul 6 at 20:28

3 Answers

vote up 6 vote down check

This will check if user is in the local Administrators group (assuming you're not checking for domain admin permissions)

using System.Security.Principal;

public bool IsUserAdministrator()
{
    //bool value to hold our return value
    bool isAdmin;
    try
    {
        //get the currently logged in user
        WindowsIdentity user = WindowsIdentity.GetCurrent();
        WindowsPrincipal principal = new WindowsPrincipal(user);
        isAdmin = principal.IsInRole(WindowsBuiltInRole.Administrator);
    }
    catch (UnauthorizedAccessException ex)
    {
        isAdmin = false;
    }
    catch (Exception ex)
    {
        isAdmin = false;
    }
    return isAdmin;
}
link|flag
2  
This will determine if the user is in the BUILTIN\Administrators group, but will it show if the user is elevated on Vista? – John Saunders Jul 6 at 20:33
Is catching every exception really necessary? – Jakub Šturc Jul 6 at 20:38
If anyone can test this on Vista, it would be great. – Wadih M. Jul 6 at 20:40
necessary no, but sure saves you the trouble down the road of having runtime errors if something odd happens – Jared Jul 6 at 20:40
1  
This won't work in Vista if UAC is enabled. The reason is that UAC creates a "split token" for users with admin priveleges and the "split token" explicitly excludes all admin roles (including things like "Domain Admin"). – Jacob Proffitt Jul 6 at 23:05
show 1 more comment
vote up 3 vote down

If you want to make sure your solution works in Vista UAC, and have .Net Framework 3.5 or better, you might want to use the System.DirectoryServices.AccountManagement namespace. Your code would look something like:

bool isAllowed = false;
using (PrincipalContext pc = new PrincipalContext(ContextType.Machine, null))
{
    UserPrincipal up = UserPrincipal.Current;
    GroupPrincipal gp = GroupPrincipal.FindByIdentity(pc, "Administrators");
    if (up.IsMemberOf(gp))
        isAllowed = true;
}
link|flag
will it show if the user is elevated on Vista? – Keivan Jul 7 at 1:27
It should. I haven't tested it against the builtin.Administrators account. My application was testing against a domain. theruntime.com/blogs/jacob/… – Jacob Proffitt Jul 7 at 5:56
vote up 1 vote down

Use can use WMI with something like this to find out if the account is an admin, and just about anything else you want to know about there account

using System;
using System.Management;
using System.Windows.Forms;

namespace WMISample
{
    public class MyWMIQuery
    {
        public static void Main()
        {
            try
            {
                ManagementObjectSearcher searcher = 
                    new ManagementObjectSearcher("root\\CIMV2", 
                    "SELECT * FROM Win32_UserAccount"); 

                foreach (ManagementObject queryObj in searcher.Get())
                {
                    Console.WriteLine("-----------------------------------");
                    Console.WriteLine("Win32_UserAccount instance");
                    Console.WriteLine("-----------------------------------");
                    Console.WriteLine("AccountType: {0}", queryObj["AccountType"]);
                    Console.WriteLine("FullName: {0}", queryObj["FullName"]);
                    Console.WriteLine("Name: {0}", queryObj["Name"]);
                }
            }
            catch (ManagementException e)
            {
                MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
            }
        }
    }
}

To make it easier to get started download WMI Creator

you can also use this it access active directory (LDAP) or anything else on you computer/network

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.