From aa1fc183c3d15cfaf770b11daa2d63c4e79480a2 Mon Sep 17 00:00:00 2001 From: staleycyn <45440075+staleycyn@users.noreply.github.com> Date: Sat, 3 Feb 2024 06:34:21 -0800 Subject: [PATCH] Update LAB_01-Manage_Entra_ID_Identities.md --- .../Lab/LAB_01-Manage_Entra_ID_Identities.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/New Instructions/Lab/LAB_01-Manage_Entra_ID_Identities.md b/New Instructions/Lab/LAB_01-Manage_Entra_ID_Identities.md index d28a4558..35139d14 100644 --- a/New Instructions/Lab/LAB_01-Manage_Entra_ID_Identities.md +++ b/New Instructions/Lab/LAB_01-Manage_Entra_ID_Identities.md @@ -183,18 +183,18 @@ In this task, you use Azure PowerShell to create a group account and add a membe 1. Azure PowerShell uses a *Verb*-*Noun* format for commands. For example, the command to create a new group account is **New-AzureADGroup**. To view how to use a command, run the Get-Help command. - ```powershell - Get-Help New-AzureADGroup -detailed - ``` + ```powershell + Get-Help New-AzureADGroup -detailed + ``` 1. Using the example in the Help, try these commands. Notice you must first connect to Azure AD. Notice that the commands starting with a dollar sign ($) are creating variables. - ```powershell - $displayName = "MyPSgroup" - $mailNickName = "MyPSgroup" - Connect-AzureAD - New-AzureADGroup -DisplayName $displayName -MailEnabled $false -SecurityEnabled $true -MailNickName $mailNickName - ``` + ```powershell + $displayName = "MyPSgroup" + $mailNickName = "MyPSgroup" + Connect-AzureAD + New-AzureADGroup -DisplayName $displayName -MailEnabled $false -SecurityEnabled $true -MailNickName $mailNickName + ``` 1. Use **Get-AzureADGroup** to confirm your group was created. Make note of the **DisplayName**, you will need it a future step.