Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
The IsUserAnAdmin function might also be helpful. msdn.microsoft.com/en-us/library/windows/desktop/… – jmnben Oct 14 '11 at 19:11

2 Answers

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:

private bool IsAdministrator
{
    get
    {
        WindowsIdentity wi = WindowsIdentity.GetCurrent();
        WindowsPrincipal wp = new WindowsPrincipal(wi);

        return wp.IsInRole(WindowsBuiltInRole.Administrator);
    }
}

(Note: I refactored the original code to be a property, rather than an "if" statement)

share|improve this answer
Question, will this do domain security? (MYDOMAIN\Administrators) Or is this the local security only? – mattlant Sep 24 '08 at 7:17
WindowsBuiltInRole.Administrator is the local admin group – Ryan Nov 22 '08 at 21:43
2  
If your domain account is a local administrator for that machine, or a domain administrator - it will be in that local group by default, afaik. – Oskar Duveborn Feb 3 '09 at 23:11
It's better to use just new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole – abatishchev Feb 28 '09 at 23:38
The thing is the user might be an admin but may still run the app in non-admin mode (by default it's not). Does the WindowsBuildInRole.Administrator can catch that ? – David Brunelle Jul 16 '12 at 21:03
up vote 16 down vote accepted

The following C++ function can do that:

HRESULT GetElevationType( __out TOKEN_ELEVATION_TYPE * ptet );

/*
Parameters:

ptet
    [out] Pointer to a variable that receives the elevation type of the current process.

    The possible values are:

    TokenElevationTypeDefault - This value indicates that either UAC is disabled, 
        or the process is started by a standard user (not a member of the Administrators group).

    The following two values can be returned only if both the UAC is enabled
    and the user is a member of the Administrator's group:

    TokenElevationTypeFull - the process is running elevated. 

    TokenElevationTypeLimited - the process is not running elevated.

Return Values:

    If the function succeeds, the return value is S_OK. 
    If the function fails, the return value is E_FAIL. To get extended error information, call GetLastError().

Implementation:
*/

HRESULT GetElevationType( __out TOKEN_ELEVATION_TYPE * ptet )
{
    if ( !IsVista() )
        return E_FAIL;

    HRESULT hResult = E_FAIL; // assume an error occurred
    HANDLE hToken   = NULL;

    if ( !::OpenProcessToken( 
                ::GetCurrentProcess(), 
                TOKEN_QUERY, 
                &hToken ) )
    {
        return hResult;
    }

    DWORD dwReturnLength = 0;

    if ( ::GetTokenInformation(
                hToken,
                TokenElevationType,
                ptet,
                sizeof( *ptet ),
                &dwReturnLength ) )
    {
            ASSERT( dwReturnLength == sizeof( *ptet ) );
            hResult = S_OK;
    }

    ::CloseHandle( hToken );

    return hResult;
}
share|improve this answer
For the IsVista function (and more details on GetElevationType), see Andrei's blog post: softblog.com/2008-02/vista-tools – Bradley Grainger Sep 2 '10 at 17:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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