Skip to content

Instantly share code, notes, and snippets.

@epjuan21
Created March 29, 2022 16:25
Show Gist options
  • Save epjuan21/a91269d24b7160259bead80036a3ade7 to your computer and use it in GitHub Desktop.
Save epjuan21/a91269d24b7160259bead80036a3ade7 to your computer and use it in GitHub Desktop.
Crear Unidades Organizativas
############################################################
### ###
### Crear Unidades Organizativas ###
### ###
############################################################
#Crear Unidad Organizativa en la raiz del Dominio
New-ADOrganizationalUnit -Name Hospital
#Crear Unidad Organizativa Remotos dentro de la OU Hospital
New-ADOrganizationalUnit -Name Remotos -Path "OU=Hospital,DC=hospital,DC=local"
#Crear Unidad Organizativa Locales dentro de la OU Hospital
New-ADOrganizationalUnit -Name Locales -Path "OU=Hospital,DC=hospital,DC=local"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment