Is there anything I can call from the command line which will tell me if the currently logged in user has a limited account or is an admin?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

With the default command tools (no third party downloads) you can use the net command.

%username% will have the username of the current logged on user, so I would use:

net user %username%

To display information about the current logged on user. The last section of this shows:

Local Group Memberships      *Administrators       *HelpLibraryUpdaters
                             *HomeUsers
Global Group memberships     *None

Hope this helps

link|improve this answer
Don't forget to add the domain first if your in a domain – r0ca Sep 23 '10 at 16:31
feedback

What I do most of the time is in the command prompt:

compmgmt.msc /computer=Computer_name

Then, I check in the user/admin groups

You can also check with the PSTools. There is a lot you can do remotely within a domain with this!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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