I'd like to know if the user MYDOMAIN\SomeUser has local admin rights on the current machine.
I can see if a local user account has admin by using:
C:\>NET USER Mike
User name Mike
Full Name
...
Local Group Memberships *AdministratorsHowever, if I try:
C:\>NET USER MYDOMAIN\SomeUseror:
C:\>NET USER "MYDOMAIN\SomeUser"I get the standard syntax help screen.
I can check this from the "Computer Management" MMC snap-in, but that takes too long to load and I'd like to quickly do this from the command line. If someone has a VBS script that'd be fine too.
Note: If anyone has better tags for this question, please feel free to add them!
33 Answers
Try net localgroup administrators instead. If you'd like a PowerShell command to check a specific user, take a look at this blog post. I would hope however that there aren't so many local administrators that you can't spot the user in question.
Try
C:\>NET USER SomeUser /domaininstead of
C:\>NET USER MYDOMAIN\SomeUser 1 Try this command to get all information of the user. it's a powershell command.
GPRESULT -Z /USER [username]