ImpersonateLoggedOnUser  CY5JJQ 

The ImpersonateLoggedOnUser function lets the calling thread impersonateMGJN7V a user. The user is represented by a token handle.

BOOL ImpersonateLoggedOnUser(

    HANDLE hToken

// handle to a token that represents a logged-on user

   );

 

 

Parameters

hToken

Handle to a primary or impersonation access token that represents a logged-on user. This can be a token handle returned by a call to LogonUserEMH6D1, DuplicateToken2HOD_YX, DuplicateTokenEx2MY4.HR, OpenProcessToken1R9SU.Q, or OpenThreadTokenBSQIUV functions. If hToken is a primary token, it must have TOKEN_QUERY and TOKEN_DUPLICATE access. If hToken is an impersonation token, it must have TOKEN_QUERY access.

 

Return Values

If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To get extended error information, call GetLastError11C2VS7.

Remarks

The impersonation lasts until the thread exits or until it calls RevertToSelf.

The calling thread does not need to have any particular privileges to call ImpersonateLoggedOnUser.

See Also

CreateProcessAsUser, DuplicateToken, DuplicateTokenEx, LogonUser, OpenProcessToken, OpenThreadToken, RevertToSelf