Moving organizational units

The following code sample moves an organizational unit to another location.

ADSI
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")

# Connect to the Adaxes service
$ns = New-Object "Softerra.Adaxes.Adsi.AdmNamespace"
$service = $ns.GetServiceDirectly("localhost")

# Bind to the target organizational unit
$targetOUDN = "OU=Target OU,DC=domain,DC=com"
$targetOU = $service.OpenObject("Adaxes://$targetOUDN",
    $null, $null, 0)

# Move the organizational unit
$ouPath = "Adaxes://OU=Source OU,DC=domain,DC=com"
$targetOU.MoveHere($ouPath, $null)
PowerShell
Import-Module Adaxes

$identityOU = "OU=Source OU,DC=domain,DC=com"  # DN
# $identityOU = "{EB5FEB21-E648-42AD-B86C-89D3C6807953}" # GUID

$targetOUDN = "OU=Target OU,DC=domain,DC=com"

Move-AdmObject -Identity $identityOU -TargetPath $targetOUDN `
    -Server "domain.com" -AdaxesService localhost

See also