要列出用户,使用net user
命令。
net user
你会得到类似这样的输出。
User accounts for \LOCALHOST
-------------------------------------------------------------------------------
joeuser administrator guest
The command completed successfully.
如果你需要一个特定组的用户列表,使用net localgroup
:
net localgroup Users
你的输出得到的东西是这样的。
Alias name Users
Comment Users are prevented from making accidental or intentional system-wide changes and can run most applications
Members
-------------------------------------------------------------------------------
NT AUTHORITY\Authenticated Users
NT AUTHORITY\INTERACTIVE
The command completed successfully.
这是为本地系统用户准备的,不是域账户。如果你想知道Administrators组的成员,你只需要提供这个作为参数:net localgroup Administrators
。