Move Active Directory Group to Another OU using Powershell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:41:30Z http://stackoverflow.com/feeds/question/76325 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76325/move-active-directory-group-to-another-ou-using-powershell 3 Move Active Directory Group to Another OU using Powershell Eldila 2008-09-16T20:02:42Z 2009-03-10T03:48:49Z <p>How do I move an active directory group to another organizational unit using Powershell?</p> <p>ie.</p> <p>I would like to move the group "IT Department" from:</p> <pre><code> (CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca) </code></pre> <p>to:</p> <pre><code> (CN=IT Department, OU=Temporarily Moved Groups, DC=Company,DC=ca) </code></pre> http://stackoverflow.com/questions/76325/move-active-directory-group-to-another-ou-using-powershell/80253#80253 1 Answer by Steven Murawski for Move Active Directory Group to Another OU using Powershell Steven Murawski 2008-09-17T05:21:23Z 2008-09-17T05:21:23Z <p>I haven't tried this yet, but this should do it..</p> <pre><code>$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) </code></pre> http://stackoverflow.com/questions/76325/move-active-directory-group-to-another-ou-using-powershell/85685#85685 2 Answer by Eldila for Move Active Directory Group to Another OU using Powershell Eldila 2008-09-17T17:36:25Z 2008-09-17T18:47:41Z <p>Hi Steven. Your script was really close to correct (and I really appreciate your response).</p> <p>The following script is what I used to solve my problem.:</p> <pre><code>$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) </code></pre>