1、方法1 关机
shut down -s -t 0
重启
shut down -r -t
先打开操作框 (Win+R键) , 输入上述命令
在对话框中的数字表示关机/重启延迟时间2。
2、方法2 另一种方式
create a new text document and write the following code:
@echo off
echo Restart all processes by pressing any key
pause > nul
shutdown -r -t 5 -f
将文件后缀名称.txt 改为.bat即可。
3、Windows 提供了 shutdown 命令的参数:
windows introduced the shutdown command, this is used to restart a computer, terminate it, close it and perform other operations through him.
意料之外的是,这个命令提供了阻止计算机重启的一些参数。
0