- @echo off
- :begin
- choice /c:1 /t:60 /d:1
- if errorlevel 1 goto next
-
- :next
- start C:\"Program Files"\"Mozilla Firefox"\firefox.exe "http://www.baidu.com"
- start C:\"Program Files"\"Mozilla Firefox"\firefox.exe "http://www.taobao.com"
- choice /c:1 /t:10 /d:1
- if errorlevel 1 goto task
-
- :task
- taskkill /f /im firefox.exe
- goto begin
复制代码
|