VMware vSphere 5.0实践:使用脚本PowerCLI部署虚拟机

日期: 2013-01-04 来源:TechTarget中国 英文

  使用克隆及模板的方式来部署虚拟机,但不管是从模板部署还是对虚拟机进行克隆,都只能一对一,不能一对多。如果需要部署N台虚拟机的话,两种方法都不是那么有效。那么是否有更快捷的方法呢?当然有,用脚本PowerCLI。接下来我就用PowerCLI来同时部署多台虚拟机。

  Step1:自定义虚拟机模板

  Registration information: name company
  Computer name: Use the virtual machine name (important)
  Product key: Didn’t need it because I’ve configured KMS
  Password: Company default local administrator password, selected: Automatically login as the Administrator: 2
  Timezone: GMT+0100 (Amsterdam)
  Runonce: none
  Network: Typical settings
  Workgroup or Domain: selected to auto join the domain with domain administrator credentials + domain name (important)
  Operation System Options: Selected: Generate New Security ID (SID)
 
  Step2:VM模板设置

  Hard disk: 40 GB with only OS configured with company standard policy
  VMware tools: Latest, this must be installed for Specification Template and NIC
  Network: VMXNET3 (needed VMware Tools for driver)
 
  Step3:脚本保存(saved as: FileserverDeploy.ps1)

  New-vm -vmhost esx04.vmpros.local -Name FS-SVR01 -Template WIN2008R2_Template -Datastore datastore2
  -OSCustomizationspec WIN2008R2_Template
  New-vm -vmhost esx04.vmpros.local -Name FS-SVR02 -Template WIN2008R2_Template -Datastore datastore2
  -OSCustomizationspec WIN2008R2_Template
  New-vm -vmhost esx04.vmpros.local -Name FS-SVR03 -Template WIN2008R2_Template -Datastore datastore2
  -OSCustomizationspec WIN2008R2_Template
  New-vm -vmhost esx04.vmpros.local -Name FS-SVR04 -Template WIN2008R2_Template -Datastore datastore2
  -OSCustomizationspec WIN2008R2_Template
  New-vm -vmhost esx04.vmpros.local -Name FS-SVR05 -Template WIN2008R2_Template -Datastore datastore2
  -OSCustomizationspec WIN2008R2_Template 
  -vmhost = Target host;
  -Name = Name of new VM;
  -Template: From wich template you want to deploy the new VM;
  -Datastore: Target datastore to place the new VM;
  -OSCustomizationspec = Wich “prep” template you want to deploy the new VM;

我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。

我原创,你原创,我们的内容世界才会更加精彩!

【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】

微信公众号

TechTarget微信公众号二维码

TechTarget

官方微博

TechTarget中国官方微博二维码

TechTarget中国

电子邮件地址不会被公开。 必填项已用*标注

敬请读者发表评论,本站保留删除与本文无关和不雅评论的权力。

相关推荐