我正在尝试使用批处理脚本关闭我的PC,但是当我输入“@echo shutdown / r”时,CMD只是在屏幕上显示“shutdown / r”,而不是执行命令。我目前是批处理脚本的新手,所以请原谅我对命令提示符和批处理脚本的了解。
这是我的代码(我认为这不会有帮助):
@echo off
title Shutdown.bat
color 0a
echo:
echo Your PC will shutdown (testing).
pause>nul
@echo shutdown /r
pause>nul
答案 0 :(得分:1)
命令echo text
仅在命令行上显示text
。仅使用shutdown /r
关闭电脑。