#Création des OU New-ADOrganizationalUnit -Name "IT" -Path "OU=Domain,DC=univ-poitiers,DC=local" New-ADOrganizationalUnit -Name "Direction" -Path "OU=Domain,DC=univ-poitiers,DC=local" New-ADOrganizationalUnit -Name "Banque" -Path "OU=Domain,DC=univ-poitiers,DC=local" # Création de Groupes AGDLP ## GG New-ADGroup -Name "GG-Banque" -GroupCategory Security -GroupScope Global -Path "OU=Banque,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GG-IT" -GroupCategory Security -GroupScope Global -Path "OU=IT,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GG-Direction" -GroupCategory Security -GroupScope Global -Path "OU=Direction,OU=Domain,DC=univ-poitiers,DC=local" ## GDL New-ADGroup -Name "GDL-Banque-RO" -GroupCategory Security -GroupScope DomainLocal -Path "OU=Banque,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GDL-Banque-RW" -GroupCategory Security -GroupScope DomainLocal -Path "OU=Banque,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GDL-IT-RO" -GroupCategory Security -GroupScope DomainLocal -Path "OU=IT,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GDL-IT-RW" -GroupCategory Security -GroupScope DomainLocal -Path "OU=IT,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GDL-Direction-RO" -GroupCategory Security -GroupScope DomainLocal -Path "OU=Direction,OU=Domain,DC=univ-poitiers,DC=local" New-ADGroup -Name "GDL-Direction-RW" -GroupCategory Security -GroupScope DomainLocal -Path "OU=Direction,OU=Domain,DC=univ-poitiers,DC=local" ## Gestion des groupes Add-ADGroupMember -Identity "GG-Banque" -Members "GG-Banque" Add-ADGroupMember -Identity "GG-IT" -Members "GG-IT" Add-ADGroupMember -Identity "GG-Direction" -Members "GG-Direction" Add-ADGroupMember -Identity "GDL-IT-RO" -Members "GG-IT" Add-ADGroupMember -Identity "GDL-IT-RW" -Members "GG-IT" Add-ADGroupMember -Identity "GDL-Banque-RO" -Members "GG-Banque" Add-ADGroupMember -Identity "GDL-Banque-RW" -Members "GG-Banque" Add-ADGroupMember -Identity "GDL-Direction-RO" -Members "GG-Direction" Add-ADGroupMember -Identity "GDL-Direction-RW" -Members "GG-Direction"