Skip to content

Instantly share code, notes, and snippets.

@adamdriscoll
Created March 10, 2017 01:40
Show Gist options
  • Save adamdriscoll/7cbe8ca2c1d7ebbc026a74f1b48a2426 to your computer and use it in GitHub Desktop.
Save adamdriscoll/7cbe8ca2c1d7ebbc026a74f1b48a2426 to your computer and use it in GitHub Desktop.
Rename Object LDAP
var connectionObject = new LdapConnection(new LdapDirectoryIdentifier(controller), new NetworkCredential(username, password));
var request = new ModifyDNRequest
{
DeleteOldRdn = true,
DistinguishedName = dn,
NewName = "CN=" + newCn
};
var response = connectionObject.SendRequest(request);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment