之前的博文介绍过windows azure的登录管理方式有网页门户及powershell管理两种办法,今天,我们就来介绍下,如何使用powershell来控制虚拟机的打开与关闭

 

首先,安装Microsoft azure SDK并连接azure,之前介绍过,这里就不详细赘诉

打开powershell

输入get-azurevm查看当前的虚拟机信息

windows azure通过powershell打开关闭虚拟机_windows azure  power

输入get-azurevm –servicename “testcloud” –name “testvm01”查看testcloud云服务中testvm01虚拟机的详细信息,我们看到目前虚拟机处于启动状态

windows azure通过powershell打开关闭虚拟机_windows azure  power_02

我们通过命令stop-azurevm命令关闭testvm01虚拟机

-servicename:云服务名称

-name:虚拟机名称

windows azure通过powershell打开关闭虚拟机_windows azure  power_03

完成虚拟机关闭

windows azure通过powershell打开关闭虚拟机_windows azure  power_04

查看虚拟机状态

windows azure通过powershell打开关闭虚拟机_windows azure  power_05

通过start-azurevm开启虚拟机

windows azure通过powershell打开关闭虚拟机_windows azure  power_06

完成虚拟机启动

windows azure通过powershell打开关闭虚拟机_windows azure  power_07

查看虚拟状态,虚拟机已经完成启动

windows azure通过powershell打开关闭虚拟机_windows azure  power_08

重启虚拟机命令:restart-azurevm,使用方法与启动和关闭一样,不在详细描述