win-install-ventoy
Windows 安装 Ventoy 多系统启动盘
补充说明
Ventoy 是一款开源的多系统启动盘制作工具,只需将 ISO/WIM/IMG/VHD(x) 等镜像文件拷贝到 U 盘即可启动,无需反复格式化。Ventoy 是一个制作可启动 U 盘的开源工具,支持直接拷贝镜像文件即可引导启动,无需解压或格式化。
- GitHub:
https://github.com/ventoy/Ventoy - 官网:
https://www.ventoy.net/
安装 Ventoy
CMD:
cd /d "%USERPROFILE%\Downloads" && curl.exe -L -o ventoy-1.1.00-windows.zip https://github.com/ventoy/Ventoy/releases/download/v1.1.00/ventoy-1.1.00-windows.zip && tar -xf ventoy-1.1.00-windows.zip -C "C:\Program Files" && start "" "C:\Program Files\Ventoy\Ventoy2Disk.exe"
PowerShell:
cd ~\Downloads; curl.exe -L -o ventoy-1.1.00-windows.zip https://github.com/ventoy/Ventoy/releases/download/v1.1.00/ventoy-1.1.00-windows.zip; tar -xf ventoy-1.1.00-windows.zip -C "C:\Program Files"; Start-Process "C:\Program Files\Ventoy\Ventoy2Disk.exe"
winget 安装命令
推荐使用 winget 安装,自动处理依赖、静默后台执行
winget install -e --id Ventoy.Ventoy -h --accept-package-agreements --accept-source-agreements
-e:精确匹配包 ID,杜绝装错-h:静默安装,不弹出向导窗口--accept-package-agreements:自动同意许可协议--accept-source-agreements:同意源协议,批量部署必备
使用前提
- 系统:Windows 11 / 10 1709+(自带 winget)
- 权限:以管理员身份运行 CMD,否则 UAC 中断自动化
- 网络:需正常联网
执行结果
- 未安装 → 自动下载 + 静默安装,无弹窗
- 已装同版本 → 提示已安装,不重复操作
- 已有旧版 → 不会自动升级,如需升级请运行
winget upgrade Ventoy.Ventoy