使用Powershell改变Azure经典虚拟机Size

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Powershell改变Azure经典虚拟机Size相关的知识,希望对你有一定的参考价值。

1.       Login your Azure Account

技术分享图片

 

2.       Find out the VM which you want to resize using the command “Get-AzureVM”

Get-AzureVM

技术分享图片

3.       Select the detail info of your VM

Get-AzureVM -ServiceName leounmanagedvm018664 -Name leounmanagedvm01

技术分享图片

4.       Use the following command to update the VM size

Get-AzureVM -ServiceName "leounmanagedvm018664" -Name "leounmanagedvm01" | Set-AzureVMSize -InstanceSize Standard_A1_v2 | Update-AzureVM

技术分享图片技术分享图片

5.       Have a verification


 技术分享图片

 

6.       You can use the command “Get-AzureRmVMSize” to check all the VM sizes on our cloud

技术分享图片

 


以上是关于使用Powershell改变Azure经典虚拟机Size的主要内容,如果未能解决你的问题,请参考以下文章

Azure 基础:使用 powershell 创建虚拟机

Azure PowerShell批量创建Azure虚拟机

Windows 上安装 Azure PowerShell及Azure PowerShell部署虚拟机

Windows Azure PowerShell之管理虚拟机

windows azure使用powershell批量创建虚拟机

如何使用PowerShell从VHD创建虚拟机