返回列表 发帖
题目如下:
  利用choice.exe在程序启动前进行10秒倒计时,中间可按任意字母退出,10秒后自动启动程序,至于要启动什么样的程序只需表示出来即可,你甚至于用一个echo命令表示就可以了。
@echo off
choice /t:10 /c abc /d a
if %errorlevel%==1 start QQ.exe
if %errorlevel%==2 exit
......COPY

TOP

返回列表