0

如何检索域中文件夹中的计算机列表。假设我有 maydomain.dom 作为我的域,并且我有一个包含一些计算机的文件夹。

4

2 回答 2

1

它不完全相同,但也许您可以使用与此博客文章中相同的原理:使用 GUID 在 Active Directory 文件夹中查找用户

于 2010-06-15T11:23:05.737 回答
1

按照代码列出您的域和活动目录中的计算机,这可能会对您有所帮助

//ActiveDirectorySearch1
//Displays all computer names in an Active Directory
using System;
using System.DirectoryServices; 
namespace ActiveDirectorySearch1
{
class Class1
{
static void Main (string[] args)
{
//Note : microsoft is the name of my domain for testing purposes.
DirectoryEntry entry = new DirectoryEntry(LDAP://microsoft);
DirectorySearcher mySearcher = new DirectorySearcher(entry);
mySearcher.Filter = ("(objectClass=computer)");
Console.WriteLine("Listing of computers in the Active Directory"); 
Console.WriteLine("============================================"); foreach(SearchResult resEnt in mySearcher.FindAll())
{ 
Console.WriteLine(resEnt.GetDirectoryEntry().Name.ToString()); }
Console.WriteLine("=========== End of Listing ============="); 
}
}
}

http://www.c-sharpcorner.com/UploadFile/jodonnell/ListAllComps07022005005654AM/ListAllComps.aspx

于 2010-06-15T11:03:35.113 回答