I'm trying to execute silent installation of FF. in cmd the command "Firefox Setup X.exe" -ms works with no problems. but when i'm trying to execute this command through bat file, it works, but the installation is not silent (some installation dialogs pop up...)

how it can be fixed ?

thanks.

link|improve this question

36% accept rate
feedback

1 Answer

you could redirect it's output it to nul or a log file:

"Firefox Setup X.exe" -ms 1>nul

"Firefox Setup X.exe" -ms > ffinstall.log
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.