1.使用powershell直接安装
Install-Module VMware.PowerCLI -Scope CurrentUser
2.下载安装包后解压,将模块复制到powershell的模块目录
1 在官网下载ZIP包:https://developer.vmware.com/web/tool/vmware-powercli
2 在powershell界面使用$env:PSModulePath查看模块目录的路径
3 将解压的模块复制到3个路径任意一个Module目录下
3.完成后进入模块目录解锁文件并验证是否可用
1 PS C:\Users\Administrator> cd "C:\Program Files\WindowsPowerShell\Modules" 2 PS C:\Program Files\WindowsPowerShell\Modules> Get-ChildItem * -Recurse | Unblock-File 3 PS C:\Program Files\WindowsPowerShell\Modules> Get-Module -Name VMware.PowerCLI -ListAvailable 4 5 6 目录: C:\Program Files\WindowsPowerShell\Modules 7 8 9 ModuleType Version Name ExportedCommands 10 ---------- ------- ---- ---------------- 11 Manifest 12.7.0.... VMware.PowerCLI 12 13 14 目录: C:\Windows\system32\WindowsPowerShell\v1.0\Modules 15 16 17 ModuleType Version Name ExportedCommands 18 ---------- ------- ---- ---------------- 19 Manifest 12.3.0.... VMware.PowerCLI
4.连接VC发现会提示Additional Information: 无法为 SSL/TLS 安全通道与颁发机构“xxx.xxx.xxx.xxx”建立信任关系。需要忽略证书安全信息
Get-PowerCLIConfiguration Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false
标签:Files,Modules,WindowsPowerShell,Program,PowerCLI,安装,VMware From: https://www.cnblogs.com/ippondo/p/16661529.html