如何使用 PowerShell 获取 Azure VM 磁盘缓存设置?
若要使用 PowerShell 获取 Azure 磁盘缓存设置,首先需要使用 Get-AzVM 命令检索 VM 信息。在运行此命令之前,请确保已连接到 Azure 帐户 (Connect-AzAccount) 和适当的订阅 (Set-AzContext)。
在本示例中,我们有 TestVM。
$vm = Get-AzVM -Name TestVM
我们将使用 StorageProfile 属性和 OSdisk 子属性来获取加密设置。
PS C:\> $vm.StorageProfile.OsDisk.Caching
输出
若要检索特定订阅中所有 Azure VM 的缓存设置,我们可以使用以下命令。
Get-AzVM | Select Name, ResourceGroupName, @{N='Caching';E={$_.StorageProfile.OSDisk.Caching}}
广告