如何使用 Powershell 将 Active Directory 组移动到另一个组织单位?
IE。
我想将组“IT部门”从:
(CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca)
到:
(CN=IT Department, OU=Temporarily Moved Groups, DC=Company,DC=ca)
如何使用 Powershell 将 Active Directory 组移动到另一个组织单位?
IE。
我想将组“IT部门”从:
(CN=IT Department, OU=Technology Department, OU=Departments,DC=Company,DC=ca)
到:
(CN=IT Department, OU=Temporarily Moved Groups, DC=Company,DC=ca)
您的脚本非常接近正确(我非常感谢您的回复)。
以下脚本是我用来解决问题的脚本:
$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)
我还没有尝试过,但这应该可以..
$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)