如何更改 .msi 安装程序的提取文件夹?

发布于 2024-10-09 13:17:32 字数 161 浏览 5 评论 0原文

我有一个 .msi 安装程序,在 C 驱动器中需要 3 GB 来解压(我假设)。我的 %TEMP%%TMP% 位于不同的卷上,因此需要的空间应该在那里。

有谁知道更改解压路径的简单方法?

注意:我运行的是 Windows 7 x64。

I have a .msi installer that needs 3 gigs in the C drive, to unpack (I assume). My %TEMP% and %TMP% are on a different volume, so the space needed should be there.

Does anyone know an easy way to change the unpack path?

Note: I'm running Windows 7 x64.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心凉怎暖 2024-10-16 13:17:32

您可以使用以下命令手动提取 *.msi 文件:

msiexec /a <名称>.msi TARGETDIR=<路径>; /qb

You can manually extract the *.msi file with;

msiexec /a <name>.msi TARGETDIR=<path> /qb

一人独醉 2024-10-16 13:17:32

您可以首先将 msi 的内容提取到临时文件夹,然后从那里运行它:

msiexec /a [path to my.msi] TARGETDIR=d:\temp

You can first extract the contents of the msi to a temp folder, then run it from there:

msiexec /a [path to my.msi] TARGETDIR=d:\temp
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文