At work we’ve been struggling a lot since users don’t have admin rights. But they don’t know how to check. I wrote a quick script in the great language of AutoIT to tell a user if they have admin rights or not. I throw this on there desktop and just ask them to run it. Saves me a lot of headaches.
Code:
If IsAdmin() Then
MsgBox(0, “”, @UserName & “, You are an Admin”)
else
MsgBox(0, “”, @UserName & “, You are not an Admin”)
EndIf
Here’s the full exe if you don’t want to compile it.


