2.8 KiB
1 - Administer Identity
Configure Azure Active Directory
This area does not have a formal demonstration. Consider these Quickstarts.
Quickstart - Access & create new tenant - Azure AD | Microsoft Docs
Quickstart - View groups & members - Azure AD | Microsoft Docs
Configure User and Group Accounts
In this demonstration, we will explore Azure Active Directory.
Note: Depending on your subscription not all areas of the Azure Active Directory blade will be available.
Add or delete users - Azure Active Directory | Microsoft Docs
Create a basic group and add members - Azure Active Directory | Microsoft Docs
Review license and domain information
-
Access the Azure portal and navigate to the Azure Active Directory blade.
-
On the Overview blade, review the Tenant information including license and primary domain.
Explore user accounts
-
Select the Users blade.
-
Explain the choices for New user and New guest user.
-
Select New user and discuss the differences between Create user and Invite user.
-
Create a New user reviewing the Identity, Groups and roles, Settings, and Job Info parameters.
-
After the user is created, review Reset password, Delete user, and Sign-ins.
Explore group accounts
-
Return to the Azure Active Directory page and select the Groups blade.
-
Create a New group or select an existing group to review.
-
Review information about a group including Membership type and Type.
Optional - Explore PowerShell for group management
- Create a new group called Developers.
New-AzADGroup -DisplayName Developers -MailNickname Developers
- Retrieve the Developers group ObjectId.
Get-AzADGroup
- Retrieve the user ObjectId for the member to add.
Get-AzADUser
- Add the user to the group. Replace groupObjectId and userObjectId.
Add-AzADGroupMember -MemberUserPrincipalName ""myemail@domain.com"" -TargetGroupDisplayName ""MyGroupDisplayName""
- Verify the members of the group. Replace groupObjectId.
Get-AzADGroupMember -GroupDisplayName "MyGroupDisplayName"