vps交流

Windows如何定时重启软件?


有一个软件 我想让他半个小时之后自动重启一次 怎么操作Windows如何定时重启软件?
写个bat脚本不就好了 简简单单
计划任务

iiss 发表于 2022-3-2 20:30
写个bat脚本不就好了 简简单单

球脚本Windows如何定时重启软件?

本帖最后由 zkx 于 2022-3-2 20:47 编辑

  1. @echo off
  2. title 倒计时重启软件
  3. mode con cols=30 lines=4&color 4e
  4. :next
  5. for /l %%i in (1800,-1, 0) do (
  6. cls
  7. echo.
  8. echo    倒计时%%i秒 重启软件
  9. ping 127.1 -n 2 >nul
  10. )
  11. taskkill /f /im yourSoftName.exe
  12. start yourSoftName.exe
  13. goto:next

复制代码

阿里嘎多Windows如何定时重启软件?