Move Active Directory Group to Another OU using Powershell - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T10:41:30Zhttp://stackoverflow.com/feeds/question/76325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76325/move-active-directory-group-to-another-ou-using-powershell3Move Active Directory Group to Another OU using PowershellEldila2008-09-16T20:02:42Z2009-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#802531Answer by Steven Murawski for Move Active Directory Group to Another OU using PowershellSteven Murawski2008-09-17T05:21:23Z2008-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#856852Answer by Eldila for Move Active Directory Group to Another OU using PowershellEldila2008-09-17T17:36:25Z2008-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>