谁可以给我写个批处理,要求:开机运行c:尀1.exe 等待5秒后关闭次程序。等待10秒后再运行c:尀1.exe 谢谢

2024-11-28 20:49:51
推荐回答(1个)
回答(1):

  taskill是关闭1.exe运行产生的进程,自行修改为进程名
  @echo off
  start c:\1.exe
  ping 127.1 /n 6 >nul
  taskkill /f /im 1.exe
  ping 127.1 /n 11 >nul
  start c:\1.exe
  pause