Create and manage groups Flashcards
1
Q
What is the azure cli command for creating a new group named Producers
A
az ad group create –display-name “Producers” –mail-nickname “Producers
2
Q
What is the powershell command for creating a new group
A
New-AzureADGroup -DisplayName “Marketing” -MailEnabled $false -SecurityEnabled $true -MailNickName “NotSet”
3
Q
If securityEnabled is set to $true what option must be false?
A
MailEnabled because groups with security enabled dont support the mail feature