
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
Retrieve OS Caching Setting of Azure VM Using Azure CLI in PowerShell
To retrieve the OS Caching setting of the Azure VM using CLI, we can use the below command.
PS C:\> az vm show -n VMName -g VMRG --query storageProfile.osDisk.caching -otsv
Output
ReadWrite
You can also get the caching setting on the Azure VM without using the resource group name using the command below.
PS C:\> az vm list --query "[?name=='vmname'].storageProfile.osDisk.caching" -otsv
If you need to retrieve the setting for all VMs then,
PS C:\> az vm list --query "[].{VMName:name, ResourceGroup:resourceGroup, caching:storageProfile.osDisk.caching}" -otable
Advertisements