Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions articles/virtual-machines/maintenance-configurations-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ az maintenance applyupdate create \

## Check the status of applying updates

You can check on the progress of the updates by using `az maintenance applyupdate get`.
You can check on the progress of the updates by using `az maintenance applyupdate show`.

To see results for the last update, use `default` as the update name. Or replace `myUpdateName` with the name of the update that was returned when you ran `az maintenance applyupdate create`.

Expand All @@ -337,7 +337,7 @@ Type : Microsoft.Maintenance/applyUpdates
### Isolated VM

```azurecli-interactive
az maintenance applyupdate get \
az maintenance applyupdate show \
--subscription {subscriptionID} \
--resource-group myMaintenanceRG \
--resource-name myVM \
Expand All @@ -351,7 +351,7 @@ az maintenance applyupdate get \
### Dedicated host

```azurecli-interactive
az maintenance applyupdate get \
az maintenance applyupdate show \
--subscription {subscriptionID} \
--resource-group myMaintenanceRG \
--resource-name myHost \
Expand All @@ -367,7 +367,7 @@ az maintenance applyupdate get \
### Virtual machine scale sets

```azurecli-interactive
az maintenance applyupdate get \
az maintenance applyupdate show \
--subscription {subscriptionID} \
--resource-group myMaintenanceRG \
--resource-name myVMSS \
Expand Down