From cd654d10972104df2878da88f3e5daafd1246d6f Mon Sep 17 00:00:00 2001 From: Starccy <452276725@qq.com> Date: Mon, 11 Mar 2019 20:44:25 +0800 Subject: [PATCH] shutdown: add Chinese translation --- pages.zh/windows/shutdown.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pages.zh/windows/shutdown.md diff --git a/pages.zh/windows/shutdown.md b/pages.zh/windows/shutdown.md new file mode 100644 index 000000000..82f6a4cbd --- /dev/null +++ b/pages.zh/windows/shutdown.md @@ -0,0 +1,35 @@ +# shutdown + +> 用于关闭,重新启动或注销计算机的工具. + +- 关闭当前的计算机: + +`shutdown /s` + +- 重启当前的计算机: + +`shutdown /r` + +- 休眠当前的计算机: + +`shutdown /h` + +- 注销当前的计算机: + +`shutdown /l` + +- 指定在关闭之前等待的时间(以秒为单位): + +`shutdown /s /t {{秒}}` + +- 指定一个关机的理由: + +`shutdown /s /c "{{理由}}"` + +- 在超时之前取消关机指令: + +`shutdown /a` + +- 关闭远程的计算机: + +`shutdown /m {{\\主机名}}`