Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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 имеют эту проблему
  • 202 просмотра
  • Последний ответ от 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