在 choco 升级时保留不同的安装目录
我已使用 Chocolatey 将 Firefox 安装到不同的安装目录 C:\Software\Firefox
中,命令如下:choco install firefox --params "/InstallDir:C:\Software\Firefox"
通过 choco Upgrade firefox
升级 Firefox 时,Firefox 安装会从 C:\Software\Firefox
移动到 Firefox 默认 C:\Program Files \Mozilla火狐浏览器。
我能否以某种方式解决此行为,以便即使在 choco 升级
上也能保留我的自定义安装目录?
谢谢!
I've installed Firefox using Chocolatey to the different install directory C:\Software\Firefox
with the following command: choco install firefox --params "/InstallDir:C:\Software\Firefox"
When upgrading Firefox via choco upgrade firefox
, the Firefox installation gets moved from C:\Software\Firefox
to the Firefox default C:\Program Files\Mozilla Firefox
.
Can I somehow work around this behavior so that my custom install directory gets preserved even on choco upgrade
?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须使用以下命令启用 Chocolatey 功能
useRememberedArgumentsForUpgrades
:此后,即使在调用
choco Upgrade
时,安装目录也会被保留。I had to enable the Chocolatey feature
useRememberedArgumentsForUpgrades
with the following command:After this, the install directory was preserved even when calling
choco upgrade
.