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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the powershell command for creating a new group

A

New-AzureADGroup -DisplayName “Marketing” -MailEnabled $false -SecurityEnabled $true -MailNickName “NotSet”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly