From 9bd20ef0ba88be84fdccefa749ccd356e97e0691 Mon Sep 17 00:00:00 2001 From: shivanadhuni <79153519+shivanadhuni@users.noreply.github.com> Date: Thu, 12 Mar 2026 16:12:55 +0530 Subject: [PATCH] Update troubleshoot-vm-boot-error.md The mentioned commands syntax is wrong and those are not working. I have verified in the lab and updated it accordingly. --- .../virtual-machines/linux/troubleshoot-vm-boot-error.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/azure/virtual-machines/linux/troubleshoot-vm-boot-error.md b/support/azure/virtual-machines/linux/troubleshoot-vm-boot-error.md index c4d8979f8f1..f27b9f014be 100644 --- a/support/azure/virtual-machines/linux/troubleshoot-vm-boot-error.md +++ b/support/azure/virtual-machines/linux/troubleshoot-vm-boot-error.md @@ -82,7 +82,7 @@ The ALAR scripts use the repair extension `repair-button` to fix GRUB issues by ```azurecli-interactive az extension add -n vm-repair az extension update -n vm-repair - az vm repair repair-button --button-command 'grubfix' --verbose $RGNAME --name $VMNAME + az vm repair repair-button --button-command 'grubfix' --resource-group $RGNAME --name $VMNAME --verbose ``` * **Linux VMs with UEFI (Gen2):** @@ -90,7 +90,7 @@ The ALAR scripts use the repair extension `repair-button` to fix GRUB issues by ```azurecli-interactive az extension add -n vm-repair az extension update -n vm-repair - az vm repair repair-button --button-command 'efifix' --verbose $RGNAME --name $VMNAME + az vm repair repair-button --button-command 'efifix' --resource-group $RGNAME --name $VMNAME --verbose ``` > [!IMPORTANT]