vote up 0 vote down star

Is there a way to enumerate all users on a local (NT-based) Windows box that can log in locally? Basically, I need a list of non-system users - this includes Administrator but excludes SYSTEM, LOCAL SERVICE and NETWORK SERVICE.

Edit: Yes, I need to do this from code. Since this is a programming website, I thought this was implied.

flag

Not-Programming-related. – George Stocker Mar 19 at 21:57
Since this is a programming website, I thought it was implied that I needed to do it from code. – CyberShadow Mar 20 at 15:41

2 Answers

vote up 2 vote down check
NET USER
[username [password | *] [options]] [/DOMAIN]
         username {password | *} /ADD [options] [/DOMAIN]
         username [/DELETE] [/DOMAIN]

NET USER creates and modifies user accounts on computers. When used
without switches, it lists the user accounts for the computer. The
user account information is stored in the user accounts database.

Did you want to do it from code? The following discussion might help: http://www.codeproject.com/KB/system/EnumerateLocalUser.aspx

link|flag
vote up 0 vote down

Simply use Net apis. See MSDN samples

link|flag

Your Answer

Get an OpenID
or

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