如何使用Powershell将活动目录组移动到另一个组织单位?
即
我想移动“IT部门”小组:
(CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca)
为:
(CN=IT Department, OU=Temporarily Moved Groups, DC=Company,DC=ca)
答案 0 :(得分:6)
您的脚本非常接近正确(我非常感谢您的回复)。
以下脚本是我用来解决问题的原因。:
$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)
答案 1 :(得分:3)
我还没有尝试过这个,但是应该这样做..
$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)