varios usuarios replicar replicacion grupo forzar dominio controlador agregar adobject active powershell active-directory

usuarios - Mover el grupo de Active Directory a otra unidad organizativa usando Powershell



move-adobject (2)

No he intentado esto todavía, pero esto debería hacerlo ...

$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)

¿Cómo muevo un grupo de directorio activo a otra unidad organizativa usando Powershell?

es decir.

Me gustaría mover el grupo "Departamento de TI" de:

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

a:

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


Tu guión estuvo muy cerca de ser correcto (y realmente aprecio tu respuesta).

El siguiente script es lo que solía resolver mi problema .:

$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)