批处理文件重启系统关闭

时间:2018-01-30 08:19:44

标签: batch-file system

我试图制作重启电脑的批处理文件。因此批处理文件在启动后立即关闭,系统未重新启动。因为我不确定哪个重启命令是正确的,所以我找到了所有我找到的。

title System restart script
echo Restarting in progress
shutdown.exe /r /t 00
shutdown -t 0 -r -f
shutdown -t 00 -r
shutdown.exe -r -t 00

1 个答案:

答案 0 :(得分:-1)

=Count([item]) & IIf(Count([item]) > 1, " Items", " Item") shutdown.exe -r -t 00shutdown.exe /r /t 00标志是指示重新启动的标志,r标志表示执行操作之前有多少延迟。

有关详细信息,请参阅this Windows articlethis SO answer