问下大神关于shutdown
cmd吧
全部回复
仅看楼主
level 1
上次看到个bat,开起来后会5分钟自动关机,但如果你在他的输入框里输入他规定的字,就会停止关机[滑稽]有没有大神知道怎么做
2014年07月25日 09点07分 1
level 13
这是vbs 吧…不过这种问题………目的不明[滑稽]
2014年07月26日 11点07分 2
回复 123456133456 :我感觉你挖坟了
2014年08月19日 10点08分
回复 123456133456 := =好吧
2014年08月19日 11点08分
level 3
@echo off
cls
echo 警告:系统将在5分钟后关机!
echo.
echo 请输入“LZ”来取消关机。
echo.
shutdown -s -t 300
:input
set input=
set /p input=输入文字:
if %input%==LZ goto cancel
cls
echo 输入错误!
echo.
goto input
:cancel
cls
shutdown -a
echo 已成功取消关机。
echo.
echo 按任意键退出……
pause>nul
2014年08月10日 05点08分 7
level 8
五分钟足够别人运行shutdown -a
2014年08月17日 04点08分 8
level 6
shutdown -a
2014年08月17日 12点08分 9
level 11
shutdown -a
2014年08月17日 14点08分 10
level 9
我忘了,以前好像试过
2014年08月19日 23点08分 11
1