龙空技术网

学习笔记-VMWare ESXi 安装镜像 添加驱动程序

夢天說夢話 352

前言:

当前各位老铁们对“powershell怎么安装module”大约比较重视,姐妹们都想要分析一些“powershell怎么安装module”的相关资讯。那么小编同时在网上汇集了一些关于“powershell怎么安装module””的相关资讯,希望咱们能喜欢,朋友们一起来了解一下吧!

准备 PowerShell 环境

#    以管理员权限打开 PowerShell#    修改 PowerShell 策略Set-ExecutionPolicy-ExecutionPolicy RemoteSignedSet-ExecutionPolicy Unrestricted#    查看 PowerShell 模块路径$env:PSModulePath#    下载 VMWare PowerCLI    复制 VMWare PowerCLI 文件到该路径C:\Windows\System32\WindowsPowerShell\v1.0\Modules#    安装 VMWare PowerCLIInstall-Module -Name VMware.PowerCLI
准备 Python
#    下载并安装 Python 3.7.1    更新 PIPpython -m pip install -i  --upgrade pip#    配置 PIP 加速源pip config set global.index-url     安装 依赖包pip install six psutil lxml pyopenssl#    配置 PowerCLI 的 Python 环境变量Set-PowerCLIConfiguration -PythonPath "D:\02-Settings\DevOps\Python37\python.exe"#    关闭当前窗口重新打开
准备 脚本工具和驱动程序
#    下载 驱动整合脚本 官方网站    下载 驱动整合脚本 GitHub 版本更新    下载驱动程序 VMWare 官方驱动下载    下载驱动程序 第三方 驱动下载    下载驱动程序 第三方 R8125 驱动下载    下载 VMware vSphere Hypervisor (ESXi) Offline Bundle
使用脚本 整合驱动程序
#    进入 脚本 及 驱动 所在目录cd E:\88-DataShare\VMWare#    整合单一驱动.\ESXi-Customizer-PS-v2.6.0.ps1 -izip .\ESXi670-201912001.zip .\net55-r8168-8.045a-napi-offline_bundle.zip#    整合多个驱动 驱动在pkg文件夹.\ESXi-Customizer-PS-v2.6.0.ps1 -izip .\ESXi670-201912001.zip -pkgDir .\pkg
备注
#    官方 添加驱动教程

标签: #powershell怎么安装module