vMware 5.5 利用vcenter的powershell 批量创建虚拟机

时间:2022-12-23 13:25:19

vMware 5.5 利用vcenter的powershell 批量创建虚拟机

第一步:登录vcenter服务器,打开powershell,执行C:\Program Files (x86)\VMware|Infrastructure\vSphere PowerCLI>Connect-VIServer -Server 123.123.123.123 -username "administrator@vsphere.local" -password "passwd"
第二步:执行C:\Program Files (x86)\VMware|Infrastructure\vSphere PowerCLI>foreach ($i in 1..10){ New-vm -vmhost 123.123.123.111 -Name aaa+$i -Template aaa_tpl -Datastore "bigstore"}


注释:

(1)123.123.123.123 是venter服务器的ip地址。

(2)123.123.123.111是实际上跑虚拟机的vsphere 服务器的ip地址。

(3)aaa+$i 是虚拟机在列表中的名字。

(4)aa_tpl 是批量创建时使用到的模板。

(5)bigstore是批量创建时使用的存储阵列名字。