最近需要用命令行操作VMWare,现将一些经常用的命令记录一下。安装VMWare命令很简单,不再像原来需要单独下载PowerCLI安装包,直接在Powershell Gallery里在线安装即可。 # 连接 Connect-VIServer -Server prod-corp-vc # 克隆虚拟机 ...
分类:
其他好文 时间:
2018-01-22 19:19:01
阅读次数:
202
1. 参考文档 http://fdo-workspace.blogspot.hk/2017/07/powershell-powercli-for-linux-server.html 2. powershell 版本需要是 alpha 不是beta powershell-6.0.0_alpha.18- ...
分类:
系统相关 时间:
2017-12-15 18:53:25
阅读次数:
255
SettheOVFpathtoavariable:
$ovfpath="Path_to_OVA”
GettheOVFconfiguration:
$ovfConfig=Get-OvfConfiguration–Ovf$ovfpath
DisplaytheconfigurationpropertiesoftheOVF:
$ovfConfig.ToHashTable()|ft–autosize
Youcanseethelistofpropertiesthatcanbeassignedvalues..
分类:
其他好文 时间:
2017-11-09 16:32:23
阅读次数:
244
1、第一步,开启软件iscsi适配器Get-VMHostStorage-VMHost172.16.15.*|Set-VMHostStorage-SoftwareIScsiEnabled$true#将所有172.16.15.X开头的esxi主机的iscsi软件适配器打开2、第二步,配置iscsi服务器地址$hba=$GETHOST|Get-VMHostHba-typeIScsi|?{$_.Model-like"*iSCSISoftw..
分类:
其他好文 时间:
2017-09-29 00:03:58
阅读次数:
237
#adddistributedswitchtodatacenter
New-VDSwitch-Namevds-vmotion-LocationDtarget
New-VDSwitch-Namevds-prd-LocationDtarget
New-VDSwitch-Namevds-storage-LocationDtarget
#addportgrouptodistributedswitch
Get-VDSwitchvds-prd|New-VDPortgroup-Name192.168.10.0-VlanId..
分类:
其他好文 时间:
2017-09-23 10:37:07
阅读次数:
234
Get-VM0001|Get-NetworkAdapter|Where-ObjectNetworkName-eqvcenterHA|Set-NetworkAdapter-confirm:$false-Portgroup(Get-VirtualPortGroup-Namevlan201-Standard-VMHost172.16.15.201)#0001是虚拟机的名称,可以用*号匹配所有vm#-VMHost172.16.15.201是0001所在的esxi主机地址..
分类:
其他好文 时间:
2017-09-22 17:45:38
阅读次数:
639
首先要安装powercli,在安装powercli之前可先把WindowsManagementFramework4.0安装好,安装完成后,重启电脑,多等一会,后台起服务有点慢。1、配置powercli可以执行远程脚本Set-ExecutionPolicyRemoteSigned2、连接VCENTER服务器Connect-VIServer172.16.15.205会弹出一个输入..
分类:
其他好文 时间:
2017-09-21 09:40:42
阅读次数:
247
Get-VMResourceConfiguration`
-vm$vm.name|Set-VMResourceConfiguration-CpuReservationMhz576-MemReservationMB1024
分类:
其他好文 时间:
2017-09-14 18:42:14
阅读次数:
233
$username="root"
$password="mypassword"
$ipstart="192.168.1."
$ipend=23..25
$ipnew=11
foreach($iplistin$ipend){
$serverip=$ipstart+$iplist
Connect-VIServer-Server$serverip-user$username-Password$password|Out-Null
$kernelip=$ipstart+$ipnew
New-VMHostNetwo..
分类:
其他好文 时间:
2017-09-14 10:32:20
阅读次数:
227
#批量添加交换机
foreach($vmhostin$(get-vmhost)){
New-VirtualSwitch-VMHost$vmhost-NameVSwitch-nicnic1,nic2
}
#给交换机批量添加端口组
foreach($vmhostin$(get-vmhost)){
$vswitch=Get-VirtualSwitch-VMHost$vmhost-NamevSwitch0
$vportgroup=New-VirtualPortGroup-Virt..
分类:
其他好文 时间:
2017-08-25 17:41:29
阅读次数:
245