04 Ocak 2021
AD Toplu Security Group Oluşturma
AD Toplu Security Group Oluşturma
Active Directory de toplu olarak security group oluşturmak için aşağıdaki scriptten faydalanabilirsiniz.
PowerShell
1 2 3 4 5 6 7 8 9 10 11 12 |
Import-Module activedirectory $list = Import-Csv -Delimiter ";" -Path C:\Liste.csv forEach ($item in $list) { $servername = $item.servername $gname = $item.servername $desc= $item.desc $Description = $desc New-ADGroup -Description $desc -Name $gname -GroupScope global -GroupCategory security -Path "OU=Gruplar,DC=hasan,DC=com" -verbose } |