From 0ec0483d8daf468539ac257cde174ccfed7c04f2 Mon Sep 17 00:00:00 2001 From: polichtm Date: Fri, 10 Apr 2020 07:34:20 -0400 Subject: [PATCH] Update LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md --- ...AB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md b/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md index c9d66a57..0057c2a9 100644 --- a/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md +++ b/Instructions/Labs/LAB_03c-Manage_Azure_Resources_by_Using_Azure_PowerShell.md @@ -94,10 +94,10 @@ In this task, you will managing configuration of the Azure managed disk by using Get-AzDisk -ResourceGroupName $rgName -Name $diskName ``` -1. To validate the current SKU as **Standard_LRS**, from the PowerShell session within Cloud Shell, run the following command: +1. To verify the current SKU as **Standard_LRS**, run the following: ```pwsh - New-AzDiskUpdateConfig -Sku Premium_LRS | Update-AzDisk -ResourceGroupName $rgName -DiskName $diskName + (Get-AzDisk -ResourceGroupName $rgName -Name $diskName).Sku ``` 1. To change the disk performance SKU to **Premium_LRS**, from the PowerShell session within Cloud Shell, run the following: