public ComputerPrincipalEx FindComputer(string computerName, string ldapPath)
 {
     _ldapPath = ldapPath;
     return(ComputerPrincipalEx.FindByIdentity(LdapContext, IdentityType.Name, computerName));
 }
 public ComputerPrincipalEx FindComputer(string computerName)
 {
     return(ComputerPrincipalEx.FindByIdentity(RootContext, IdentityType.Name, computerName));
 }