powercli命令使用(获取vmware esxi相关信息)

打开powershell,链接vmware vcenter,执行以下命令可以获取相关信息:

目前公司的vmware vcenter中使用的datastore,SAS盘(LUN0_V5000)和SATA盘(LUN0_3PAR)名称不同,使用正则进行匹配
获取存储使用情况

Get-Datastore|where {$_.name -match "LUN*"}

SAS盘

Get-Datastore|where {$_.name -match "LUN\d_V5000"}

SATA盘

Get-Datastore|where {$_.name -match "LUN\d_3PAR"}

修改Vmware Esxi虚拟机的资源配置(CPU&Memory)

Set-VM -VM $vm.Name -MemoryGB $vm.memory -NumCpu $vm.cpu -Confirm:$false
#参数-Confirm:$false,意思是阻止弹出确认提示

虚拟机快照操作

#创建快照:
get-vm -name yourvmname  |new-snapshot -name  (date +%Y%m%d)
# 注意 我这个命令快照的名字是当前日期.

#移除快照
get-vm -name yourvmname |get-snapshot -name (date  -d '5 days ago' +%Y%m%d) |remove-snapshot
#注意这个命令能够移除 名字是五天前日期的快照. 

参考链接:
https://code.vmware.com/docs/11794/cmdlet-reference
https://code.vmware.com/docs/10242/powercli-11-5-0-user-s-guide/GUID-B8C172DD-EB41-4828-AEB7-440E6186F796.html

posted @ 2022-04-15 21:02  彬彬l  阅读(765)  评论(0编辑  收藏  举报