[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] 大神帮帮我输入多少秒后重启的批处理

读秒后 自动重启没问题 按任意键 输入多少秒 重启 有问题
  1. @echo off
  2. set tt=12
  3. if not "%1"=="" goto %1
  4. del /f "%temp%\#" 2>nul
  5. start /b "" "%~f0" :count
  6. pause
  7. >"%temp%\#" type nul
  8. exit
  9. :count
  10. if %tt%==0 (
  11. shutdown /r /t 0
  12. for /f "tokens=2" %%a in ('tasklist /fi "imagename eq cmd.exe" /nh') do (taskkill /f /pid %%a>nul)
  13. exit
  14. )
  15. if exist "%temp%\#" (
  16. del "%temp%\#"
  17. set /p sj=请输入多少秒后重启:
  18. shutdown /r /t %sj%
  19. exit
  20. )
  21. cls&echo 在英文输入法状态下按任意键可退出
  22. echo 倒数%tt%秒后将自动关闭计算机!
  23. ping -n 2 127.1>nul
  24. set /a tt-=1
  25. goto :count
复制代码

回复 1# qkhhha


这样可以吗:
  1. @echo off
  2. set "InputSec=12"
  3. set /p "InputSec=请输入多少秒后重启:"
  4. shutdown /r /t %InputSec%
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

这样无法读秒呀  我要的效果是  读秒自动重启 按任意键可以设置时间重启

TOP

返回列表