查询本地组
我想检索我的计算机上的所有本地组(W2k3 域中的 Vista)。
如果我运行:
using (DirectoryEntry de = new DirectoryEntry("WinNT://" + Environment.MachineName + ",group", null, null, AuthenticationTypes.Secure))
{
}
它会抛出一个“未知错误”0x80005000,这显然意味着“无效路径”
但是查询计算机(将 ,group 更改为 ,computer)不会引发错误,但它似乎被忽略(它返回所有对象?我还没有完全检查结果)。 ,用户也提出了错误。
所以我的问题是,我走的路正确吗?有没有办法应用过滤器,这样我就不会检索所有内容?如果是这样,我在哪里可以找到正确的语法?
I'd like to retrieve all local groups on my machine (Vista in a W2k3 domain).
If I run:
using (DirectoryEntry de = new DirectoryEntry("WinNT://" + Environment.MachineName + ",group", null, null, AuthenticationTypes.Secure))
{
}
it throws an "unknown error" 0x80005000 which apparently means "invalid path"
However querying for computers (change ,group to ,computer) doesn't raise an error, but it seems to be ignored (it returns all objects? I haven't fully examined the result). ,user also raises the error.
So my question is, am I on the right path? is there a way to apply a filter so I don't retrieve everything? If so, where can I find the correct syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信你需要得到机器 - 团体是它的一个孩子。
尝试
随意用一些 LINQ 来增加它的趣味性,但这应该会给你基本的想法。
I believe you need to get the machine - groups are a child of that.
Try
Feel free to spice it up with some LINQ, but this should give you the base idea.