📅  最后修改于: 2023-12-03 15:09:46.251000             🧑  作者: Mango
msiexec
是 Windows 平台上的一个命令行程序,可以用来安装、卸载、修复、修改 MSI 格式的软件包。而带转换的 msiexec
可以更方便地使用多种格式的软件包进行安装。
msiexec
支持以下几种常见的软件包格式转换:
.msi
转 .msm
.msm
转 .msi
.msp
转 .msi
.msi
转 .mst
.mst
转 .msi
其中,.msi
、.msm
和 .msp
都是 MSI 格式的软件包,而 .mst
是 MST 格式的软件包。
以下是转换命令的示例:
msiexec /qb /a <path-to-msi> TARGETDIR=<path-to-target-dir> /x msipath.msm
msiexec /a <path-to-msm> TARGETDIR=<path-to-target-dir> /x msipath.msi
msiexec /a <path-to-msp> /qb TARGETDIR=<path-to-target-dir> /update msipath.msi
msiexec /a <path-to-msi> /qb TRANSFORMS=<path-to-mst> TARGETDIR=<path-to-target-dir>
msiexec /a <path-to-msi> /qb /t <path-to-mst> TARGETDIR=<path-to-target-dir> /x msipath.msi
带转换的 msiexec
可以为程序员提供更加方便的软件包安装、卸载和修复方式,同时支持多种格式的软件包转换。程序员可以根据上述命令示例进行操作,从而达到预期的效果。