- @echo off
- :sf_1
- echo 倒计时%N%秒后继续,或任意键退出。
- set /p s=
- if <------------- 求此处
- goto sf_1
-
- :sf_2
- echo 倒计时%N%秒后退出,或任意键继续打开程序。
- set /p s=
- if <-------------- 求此处
- goto sf_2
-
- :time_n
- for /l %%n in(15,-1,0) do(cls &ping 127.1 -n 1 >nul)
-
- :start_1
- start /w QQ.exe
- start weibo.exe
- call :echo_txt
- goto sf_2
-
- :start_2
- start chrome.exe
- call :echo_txt
- goto out
-
- :echo_txt
- echo 程序以打开。
- goto :eof
-
- :out
- echo 执行完毕,%N%秒后退出。
- exit
复制代码
|