shutdown -r。
Windows 系统自带一个名为Shutdown.exe的程序,可以用于关机操作(位置在Windows\System32下),一般情况下Windows系统的关机都可以通过调用程序 shutdown.exe来实现的,同时该程序也可以用于终止正在计划中的关机操作。
shutdown -i 显示“远程关机”图形用户界面,但必须是Shutdown的第一个参数,shutdown -l 注销当前用户,shutdown -r 关机并重启。
扩展资料:
对于windows2003 系统,有效范围是 0-600,默认为 30shutdown.exe-c 消息内容 输入关机对话框中的消息内容(不能超127个字符)。
比如你的电脑要在24:00关机,可以选择“开始运行”,输入“at 24:00 Shutdown -s”,这样,到了24点,电脑就会出现“系统关机”对话框,默认有30秒钟的倒计时并提示你保存工作。
如果你想以倒计时的方式关机,可以输入“Shutdown.exe -s -t 7200”,这里表示120分钟后自动关机,“7200”代表120分钟(7200秒)。
参考资料来源:百度百科-shutdown
电脑重启cmd命令:
运行cmd,键盘快捷键win+r,输入cmd,回车。
例子:1小时后自动关机,输入shutdown -s -t 3600,回车,其中-s是关机,-t是定时,3600是3600秒。
shutdown -s,关机(默认1分钟后关)
shutdown -s -t 3600,1小时后定时关机
shutdown -r,重启(默认1分钟后重启)
shutdown -r -t 3600 1小时后定时重启
shutdown -a 取消定时任务
命令在运行框内输入同样有效
重启:shutdown -r
关机:shutdown -h
其他命令参数如下。
Usage: shutdown [-i | -l | -s | -r | -a] [-f] [-m \\computername] [-t xx] [-c "c
omment"] [-d up:xx:yy]
No args Display this message (same as -?)
-i Display GUI interface, must be the first option
-l Log off (cannot be used with -m option)
-s Shutdown the computer
-r Shutdown and restart the computer
-a Abort a system shutdown
-m \\computername Remote computer to shutdown/restart/abort
-t xx Set timeout for shutdown to xx seconds
-c "comment" Shutdown comment (maximum of 127 characters)
-f Forces running applications to close without war
ning
-d [u][p]:xx:yy The reason code for the shutdown
u is the user code
p is a planned shutdown code
xx is the major reason code (positive integer le
ss than 256)
yy is the minor reason code (positive integer le
ss than 65536)
shutdown