我这个批处理文件哪位高手帮忙看看有什么问题,帮忙修改下,谢谢!!
@echo off:0set choice=nulecho 选择 1 : 10秒后关机echo 选择 2 : 10秒后重启echo 选择 3 : 30秒后关机 echo 选择 4 : 30秒后重启 echo 选择 5 : 只能在用户选择的对应选项中规定的时间内取消对应命令 echo 选择 6 : 关于 echo 选择 7 : 退出本程序 set /p choice=请输入上述数字代码按回车执行:if "%choice%"=="1" goto 1if "%choice%"=="2" goto 2if "%choice%"=="3" goto 3if "%choice%"=="4" goto 4if "%choice%"=="5" goto 5if "%choice%"=="6" goto 6if "%choice%"=="7" (goto 7) else (echo 输入错误&goto 0):1shutdown -s -t 10goto 7 :2shutdown -r -t 10goto 7 :3shutdown -s -t 30 goto 一直在看
页:
[1]