gpt4 book ai didi

c# - 通过WMI C#Active Directory

转载 作者:行者123 更新时间:2023-11-30 18:08:39 24 4
gpt4 key购买 nike

没有人有一些有关访问Active Directory,使用WMI(System.Management命名空间)而不是System.DirectoryServices命名空间的LDAP查询的示例。

在MSDN页面上,它使用CIM类进行了一些描述
http://msdn.microsoft.com/en-us/library/aa392320(v=VS.85).aspx
但是我找不到一些实现它的C#示例。

例如,要访问某些Win32类,您必须初始化Scope对象以使用CIMV2命名空间

private ConnectionOptions connection;
private ManagementScope scope;
...
connection = new ConnectionOptions();
...
scope = new ManagementScope("\\\\" + computer + "\\root\\CIMV2", connection);
try
{
scope.Connect();
}


并使用ObjectQuery类查询WMI数据

ObjectQuery objectQuery = new ObjectQuery("SELECT Name FROM Win32_Processor");
ManagementObjectSearcher searcher = ManagementObjectSearcher(scope, objectQuery);
foreach (ManagementObject queryObj in searcher.Get())
{
return queryObj["Name"].ToString();
}


如何使用相同的作用域访问AD?
谢谢 :)

最佳答案

关于c# - 通过WMI C#Active Directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3052695/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com