如何更改 .msi 安装程序的提取文件夹?
我有一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下命令手动提取
*.msi
文件:msiexec /a <名称>.msi TARGETDIR=<路径>; /qb
You can manually extract the
*.msi
file with;msiexec /a <name>.msi TARGETDIR=<path> /qb
您可以首先将 msi 的内容提取到临时文件夹,然后从那里运行它:
You can first extract the contents of the msi to a temp folder, then run it from there: