如果我在没有脚本的情况下运行关机命令,我在 Windows 8.1 上运行它,它可以工作。但是当我从这个脚本运行它时,cmd中显示了一些错误的语法......谢谢你的帮助
@echo off
TITLE shutdown timer
SET /P minutes=Enter minutes till shutdown or "no" to stop running shutdowns:
IF "%minutes%" == "no" (
shutdown /a
echo shutdown aborted
) ELSE (
SET /A seconds = %minutes% * 60
shutdown /s /f /t %seconds%
)
pause