This article will show the configuration commands required to complete the objectives on the exam guide for the AZ-104. The article information is updated as I complete the respective tasks.
Manage Azure Active Directory (Azure AD) objects
- Create users and groups
# Create user
az ad user create –display-name “Full Name” –user-principal-name “Firstname.lastname@domain.com”
# Create user group
az ad group create –display-name “Group Name” –mail-nickname “GroupName”
# Create user
New-AzADuser -DisplayName “Full Name” -UserPrincipalName “Firstname.lastname@domain.com” -MailNickName “FullName”
#Create Group
New-AzADGroup -DisplayName “Group Name” -MailNickName “Groupname”
- Create administrative units
# Comment
az noun verb –name variable
# Create a Administrative Unit
New-AzureADMSAdministrativeUnit -DisplayName “NameOfAdminUnit” -Descrption “DescriptionOfAdminUnit”
# Remove a Administrative Unit
Remove-AzureADMSAdministrativeUnit –
- Manage user and group properties
# Comment
az noun verb –name variable
# Comment
Verb-Noun -Parameters variable
- Perform bulk user updates
# Comment
az noun verb –name variable
# Comment
Verb-Noun -Parameters variable
- Manage device settings
# Comment
az noun verb –name variable
# Comment
Verb-Noun -Parameters variable
- configure Azure AD join
# Comment
az noun verb –name variable
# Comment
Verb-Noun -Parameters variable
- Configure self-services password reset
# Comment
az noun verb –name variable
# Comment
Verb-Noun -Parameters variable