From af868557c126d43d43c033843d17cead9681b4cb Mon Sep 17 00:00:00 2001 From: staleycyn <45440075+staleycyn@users.noreply.github.com> Date: Mon, 4 Dec 2023 05:32:13 -0800 Subject: [PATCH] Update LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md --- ...nage_Azure_Resources_by_Using_Azure_PowerShell.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/New Instructions/Lab/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md b/New Instructions/Lab/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md index 3e65d967..1ddf23aa 100644 --- a/New Instructions/Lab/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md +++ b/New Instructions/Lab/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md @@ -25,7 +25,7 @@ In this lab, you will: ## Architecture diagram -![image](./media/az104-lab03c-architecture-diagram.png) +![Diagram of the architecture.](../media/az104-lab03c-architecture-diagram.png) ### Instructions @@ -67,7 +67,7 @@ In this task, you will create a resource group and an Azure managed disk by usin ``` >**Note**: If **az104-rg1** already exists, use a different name in the **$rgName** parameter. - ![image](./media/az104-lab03c-createrg.png) + ![Screenshot of create resource group. ](../media/az104-lab03c-createrg.png) 1. To retrieve properties of the newly created resource group, run the following command: @@ -98,7 +98,7 @@ In this task, you will create a resource group and an Azure managed disk by usin -Disk $diskConfig ``` - ![image](./media/az104-lab03c-createdisk.png) + ![Screenshot of create disk. ](../media/az104-lab03c-createdisk.png) 1. To retrieve properties of the newly created disk, run the following command: @@ -130,7 +130,7 @@ In this task, you will configure the Azure managed disk by using Azure PowerShel (Get-AzDisk -ResourceGroupName $rgName -Name $diskName).Sku ``` - ![image](./media/az104-lab03c-updatesku.png) + ![Screenshot of update sku.](../media/az104-lab03c-updatesku.png) 1. To change the disk performance SKU to **Premium_LRS**, from the PowerShell session within Cloud Shell, run the following command: @@ -144,10 +144,10 @@ In this task, you will configure the Azure managed disk by using Azure PowerShel (Get-AzDisk -ResourceGroupName $rgName -Name $diskName).Sku ``` - ![image](./media/az104-lab03c-updatesku2.png) + ![Screenshot of update sku final.](../media/az104-lab03c-updatesku2.png) >**Did you notice?** PowerShell cmdlets use common verbs such as **Get**, **New**, and **Update**. Cmdlets starting with **Get** are usually retrieving information about your configuration. Cmdlets starting with **New** are usually creating new resources. Cmdlets starting with **Update** are usually configuring existing resources. ## Review -Congratulations! You have successfully started an Azure Cloud Shell session, created a resource group by using PowerShell, created a managed disk by using PowerShell, and configured the managed disk by using PowerShell. \ No newline at end of file +Congratulations! You have successfully started an Azure Cloud Shell session, created a resource group by using PowerShell, created a managed disk by using PowerShell, and configured the managed disk by using PowerShell.