如何使用 Powershell 列出域用户的用户权限和组成员身份?
我想使用 powershell 列出域用户的所有 Windows 组成员身份。我该怎么做?
I would like to list all the windows group memberships of a domain user using powershell. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定“列出所有用户权限”的确切含义 - 但组成员资格在您的域中很简单:
memberof
属性应包含该帐户的所有组成员资格的列表。您需要更新Filter
以使用适当的登录名而不是我的硬编码用户。I am not sure exactly what you mean by "list all user rights" - but group membership is straightforward from your domain:
The
memberof
property should contain a list of all the group memberships for that account. You would need to update theFilter
to use the appropriate login rather than my hard-coded user.吉里斯克!是你的意思吗?
gyurisc! Is it that you mean?