Advertisement
Advertisement
| 05.22.2008 at 12:38PM PDT, ID: 23425673 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: |
public static void ListAllPrinters(string OUDN)
{
DirectoryEntry entry = new DirectoryEntry("LDAP://" + OUDN);
DirectorySearcher DirSearch = new DirectorySearcher(entry);
DirSearch.PropertiesToLoad.Add("location");
DirSearch.PropertiesToLoad.Add("description");
DirSearch.PropertiesToLoad.Add("driverversion");
DirSearch.Filter = "(ObjectCategory=" + "printQueue" + ")";
DirSearch.PageSize = 3000;
foreach (SearchResult result in DirSearch.FindAll())
{
string Name = result.GetDirectoryEntry().Name;
}
}
|