- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get the Azure images available from the specific publisher using PowerShell?
To get the Azure images available from specific publishers like Microsoft at a specific location, we can use the Get-AzVMImageOffer command. For example, the below command will retrieve all the images available in the EastUs location and from the publisher MicrosoftWindowsServer.
PS C:\> Get-AzVMImageOffer -Location Eastus -PublisherName "MicrosoftWindowsServer"
Output
From the RedHat,
PS C:\> Get-AzVMImageOffer -Location Eastus -PublisherName RedHat
Output
- Related Articles
- How to get all the available azure VM images using Azure CLI in PowerShell?
- How to get the Azure VM available sizes using PowerShell?
- How to get the available azure VM size using Azure CLI in PowerShell?
- How to get the Azure Image publishers available at the location using PowerShell?
- How to get the available Azure VM sizes for the availability set using PowerShell?
- How to get the azure resources from the resource group using PowerShell?
- How to get the Azure resource group using Azure CLI in PowerShell?
- How to get the Azure VM Size using Azure CLI in PowerShell?
- How to get the Azure VM username using Azure CLI in PowerShell?
- How to delete the specific tag of Azure VM using PowerShell?
- How to get the location of the Azure VM using Azure CLI in PowerShell?
- How to get the Azure VM DNS name using PowerShell?
- How to get the applied azure resource tags using PowerShell?
- How to get the installed Azure VM extension using PowerShell?
- How to get the Azure VM disk encryption settings using PowerShell?

Advertisements