如何使用.bat文件启动Firefox浏览器最小化?

时间:2016-03-02 14:14:57

标签: batch-file batch-processing imacros

我希望这个批处理文件能够最小化Mozilla Firefox的两个窗口(打开http://google.com的窗口和运行iMacro google.iim的窗口) 感谢

    :loop 
    cls
    taskkill /F /IM Firefox.exe
    cls
    taskkill /F /IM crashreporter.exe
    cls
    TIMEOUT /T 5
    start "" "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -no-remote -private-window http://google.com imacros://run/?m=google.iim
    TIMEOUT /T 555
    GOTO loop

1 个答案:

答案 0 :(得分:1)

你的命令启动一个标题以imacros ...开头的firefox。 您可以尝试使用sendkeys.bat

:loop 
cls
taskkill /F /IM Firefox.exe
cls
taskkill /F /IM crashreporter.exe
cls
TIMEOUT /T 5
start "" "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -no-remote -private-window http://google.com imacros://run/?m=google.iim
TIMEOUT /T 5
call sendkeys.bat "imacros" "% "
call sendkeys.bat "imacros" "n"
TIMEOUT /T 555
GOTO loop