开发者

silent install : cant isntall FireFox silently with batch file

开发者 https://www.devze.com 2023-03-08 21:14 出处:网络
I\'m trying to execute silent instal开发者_JAVA百科lation of FF. in cmd the command \"Firefox Setup X.exe\" -ms works with no problems.

I'm trying to execute silent instal开发者_JAVA百科lation 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.


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
0

精彩评论

暂无评论...
验证码 换一张
取 消