Dear Freinds,
PLEASE TRY TO ASSIST !!!
I am trying to receive a computer properties by using the active directory.
The properties may be: Computer Name, DNS name, Description etc ..
The follwoing code is used:
However only the name of the computer is accessed.Code:DirectorySearcher mySearcher = new DirectorySearcher(entry); SearchResult result = mySearcher.FindOne(); foreach(SearchResult result in ySearcher.FindAll()) { strName = result.GetDirectoryEntry().Name; string allNames = this.GetProperties(result.GetDirectoryEntry()); }
Apprecaite your assistance how can I receive the DNS, Description Etc. ...
Is there any way in C# to receive computer properties using Active Directory ?
THanks,
moti



LinkBack URL
About LinkBacks


