From e3e7b068ebf405019e9a3de1b1e20dc98668ad6c Mon Sep 17 00:00:00 2001 From: "AutoSysOps (Leo Visser)" <96066335+autosysops@users.noreply.github.com> Date: Thu, 7 Sep 2023 16:45:57 +0200 Subject: [PATCH] Replace incomplete PowerShell parameter from Lab3c --- ...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 a9cb02d3..b678aeae 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 @@ -72,7 +72,7 @@ In this task, you will create a resource group and an Azure managed disk by usin -Location $location ` -CreateOption Empty ` -DiskSizeGB 32 ` - -Sku Standard_LRS + -SkuName Standard_LRS $diskName = 'az104-03c-disk1' @@ -113,7 +113,7 @@ In this task, you will be managing the configuration of the Azure managed disk b 1. To change the disk performance SKU to **Premium_LRS**, from the PowerShell session within Cloud Shell, run the following: ```powershell - New-AzDiskUpdateConfig -Sku Premium_LRS | Update-AzDisk -ResourceGroupName $rgName -DiskName $diskName + New-AzDiskUpdateConfig -SkuName Premium_LRS | Update-AzDisk -ResourceGroupName $rgName -DiskName $diskName ``` 1. To verify that the change took effect, run the following: