
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get Location of Azure VM Using Azure CLI in PowerShell
To find the location of the particular Azure VM using Az CLI, we can use the below command but before that, you need to make sure you are connected to the Azure cloud and had set that specific subscription.
PS C:\> az vm show -n VMName -g ResourceGroupName --query '[location]' -otsv
Alternatively, you can use the below command to get the location of the Azure VM.
PS C:\> az vm list --query "[?name==’VMName’].location" -otsv
Advertisements