gpt4 book ai didi

powershell - 使用 powershell 从 Azure 获取经典 VM 的虚拟机位置

转载 作者:行者123 更新时间:2023-12-03 01:48:19 25 4
gpt4 key购买 nike

我希望从 powershell 获取经典机器的虚拟机位置。我尝试了 Get-AzureVM 中的所有方法,但无法获取位置。

我可以从 Get-AzureRmVm (ARM) 获取虚拟机的位置

最佳答案

您不能直接使用Get-AzureVM获取虚拟机位置。您可以使用 get-AzureVM | Get-Member去检查。没有location在结果中。

对于经典 VM,您可以使用以下 cmdlet 获取 VM 位置。

$vm=Get-AzureVM -ServiceName shui -Name shui
$uri=$vm.VM.OSVirtualHardDisk.MediaLink.AbsoluteUri
Get-AzureDisk | Where-Object {$_.MediaLink -eq $uri}| Select-Object Location

这是我的结果。

enter image description here

关于powershell - 使用 powershell 从 Azure 获取经典 VM 的虚拟机位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42835682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com