本地安全组用户列表
Posted
技术标签:
【中文标题】本地安全组用户列表【英文标题】:List of users in local security group 【发布时间】:2012-10-02 10:01:22 【问题描述】:我在 PC 上的“本地用户和组”下有几个安全组。有没有办法列出特定组下的用户?
我不确定要使用哪个类。
【问题讨论】:
【参考方案1】:我在类中找到了它:DirectoryEntry
这是代码的快速版本
deComputer = New DirectoryEntry("WinNT://" + computerName + ",computer")
deComputer.RefreshCache()
deGroup = deComputer.Children.Find(Groupname, "group")
members = deGroup.Invoke("members", Nothing)
【讨论】:
以上是关于本地安全组用户列表的主要内容,如果未能解决你的问题,请参考以下文章