Skip to content

Update image-builder-overview.md #206

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update image-builder-overview.md
az vm image list --publisher MicrosoftWindowsDesktop --sku g2 --output table --all is not giving right output. 

Right output is fetched by running below command 

az vm image list --publisher MicrosoftWindowsDesktop --output table --all
  • Loading branch information
saumya1091 authored Apr 21, 2025
commit bf75d2c587bd7e39919bbe66373426b1eb9f23ab
2 changes: 1 addition & 1 deletion articles/virtual-machines/image-builder-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Here's how to find SKUs that are based on the image publisher:

```azurecli-interactive
# Find all Gen2 SKUs published by Microsoft Windows Desktop
az vm image list --publisher MicrosoftWindowsDesktop --sku g2 --output table --all
az vm image list --publisher MicrosoftWindowsDesktop --output table --all

# Find all Gen2 SKUs published by Canonical
az vm image list --publisher Canonical --sku gen2 --output table --all
Expand Down