13 lines
325 B
PowerShell
13 lines
325 B
PowerShell
|
|
#Importing requierd modules
|
|
#Import-Module Az
|
|
|
|
$groups = Import-Csv -Path "c:\Users\-GroupStructure-Full.csv" -Delimiter ","
|
|
#Connect-Az
|
|
|
|
foreach ($group in $groups)
|
|
{
|
|
$group.groupname
|
|
New-AzADGroup -DisplayName $group.groupname -Description $group.groupdescription -SecurityEnabled -MailNickName $group.groupname
|
|
}
|