为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

I tried to install firefox.exe silently, i used this command. @start /wait "Firefox Setup Stub 40.0.3.exe" -ms but i encounter error cannot found -ms

  • 6 个回答
  • 4 人有此问题
  • 211 次查看
  • 最后回复者为 cor-el

more options

@ECHO. @ECHO Installing Firefox @start /wait "Firefox Setup Stub 40.0.3.exe" -ms

@ECHO. @ECHO Installing Firefox @start /wait "Firefox Setup Stub 40.0.3.exe" -ms

被采纳的解决方案

Cor-el It Works! thank you for help!

@Start /wait "Firefox" "C:\TMP\Firefox Setup 40.0.3.exe" -ms

定位到答案原位置 👍 0

所有回复 (6)

more options

Try using the full offline installer when installing Firefox via command line. https://www.mozilla.org/en-US/firefox/all/

more options

You may have to specify the full path to the Firefox installer in case you do not start bat/cmd file in the folder where you saved the file.

more options

This is the command line I use. the-edmeister I already downloaded the offline installer but still the same.

@ECHO. @ECHO Installing Firefox @start /wait "C:\TMP\Firefox Setup 40.0.3.exe" -ms

I also used this one but also error "the installation package cannot be opened" @echo off

Echo Installing Firefox

msiexec.exe /i "C:\TMP\Firefox Setup 40.0.3.exe"

Pause

End

more options

You need to add an extra "" as the second parameter is the command (the first is the title).


@ECHO.
@ECHO Installing Firefox
@start /wait "" "C:\TMP\Firefox Setup 40.0.3.exe" -ms

more options

选择的解决方案

Cor-el It Works! thank you for help!

@Start /wait "Firefox" "C:\TMP\Firefox Setup 40.0.3.exe" -ms

more options

You're welcome.