使用 DirectorySearcher,我们可以指定在 AD 中搜索时可以加载哪些属性。
DirectorySearcher dsLookForDomain = new DirectorySearcher(deBase);
dsLookForDomain.PropertiesToLoad.Add("msDS-PrincipalName");
我有兴趣加载msDS-PrincipalName属性。这可能吗?
使用 DirectorySearcher,我们可以指定在 AD 中搜索时可以加载哪些属性。
DirectorySearcher dsLookForDomain = new DirectorySearcher(deBase);
dsLookForDomain.PropertiesToLoad.Add("msDS-PrincipalName");
我有兴趣加载msDS-PrincipalName属性。这可能吗?