How do I properly check if a process is running with administrative rights?
I checked the IsUserAnAdim
function in MSDN, but it is not recommended as it might be altered or unavailable in subsequent versions of Windows. Instead, it is recommended to use the CheckTokenMembership
function.
Then I looked at the alternate example in MSDN from a description of the CheckTokenMembership
function. However, there is Stefan Ozminski's comment in MSDN that mentions that this example does not work properly in Windows Vista if UAC is disabled.
Finally I tried to use Stefan Ozminski's code from MSDN, but it determines that the process has administrative rights even if I launch it under an ordinary user without the administrative rights in Windows 7.
See Question&Answers more detail:os