vote up 3 vote down star

How do I move an active directory group to another organizational unit using Powershell?

ie.

I would like to move the group "IT Department" from:

  (CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca)

to:

  (CN=IT Department, OU=Temporarily Moved Groups, DC=Company,DC=ca)
flag

2 Answers

vote up 2 vote down check

Hi Steven. Your script was really close to correct (and I really appreciate your response).

The following script is what I used to solve my problem.:

$from = [ADSI]"LDAP://CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca"
$to = [ADSI]"LDAP://OU=Temporarily Moved Groups, DC=Company,DC=ca"
$from.PSBase.MoveTo($to,"cn="+$from.name)
link|flag
Great!! Thanks for posting the update! – Steven Murawski Sep 17 '08 at 22:37
vote up 1 vote down

I haven't tried this yet, but this should do it..

$objectlocation= 'CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca'
$newlocation = 'OU=Temporarily Moved Groups, DC=Company,DC=ca'

$from = new-object System.DirectoryServices.DirectoryEntry("LDAP://$objectLocation")
$to = new-object System.DirectoryServices.DirectoryEntry("LDAP://$newlocation")
$from.MoveTo($newlocation,$from.name)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.