- @echo off
- taskkill /f /im explorer.exe>nul
- shutdown /s /t 30 /c 请在规定时间内输入密码,否则电脑自动关机!
- :start
- set /p mima=请输入密码,敢按X你惨了:
- if "%mima%"=="1234" goto true
- cls&echo 密码错误
- goto start
- :true
- shutdown /a
- echo 密码正确,马上进入系统,请稍等…… &ping -n 3 127.1 >nul
- start explorer.exe
- exit
复制代码
|