mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 14:46:00 +02:00
shutdown: add Chinese translation
This commit is contained in:
parent
2ea1df8c51
commit
cd654d1097
1 changed files with 35 additions and 0 deletions
35
pages.zh/windows/shutdown.md
Normal file
35
pages.zh/windows/shutdown.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# shutdown
|
||||
|
||||
> 用于关闭,重新启动或注销计算机的工具.
|
||||
|
||||
- 关闭当前的计算机:
|
||||
|
||||
`shutdown /s`
|
||||
|
||||
- 重启当前的计算机:
|
||||
|
||||
`shutdown /r`
|
||||
|
||||
- 休眠当前的计算机:
|
||||
|
||||
`shutdown /h`
|
||||
|
||||
- 注销当前的计算机:
|
||||
|
||||
`shutdown /l`
|
||||
|
||||
- 指定在关闭之前等待的时间(以秒为单位):
|
||||
|
||||
`shutdown /s /t {{秒}}`
|
||||
|
||||
- 指定一个关机的理由:
|
||||
|
||||
`shutdown /s /c "{{理由}}"`
|
||||
|
||||
- 在超时之前取消关机指令:
|
||||
|
||||
`shutdown /a`
|
||||
|
||||
- 关闭远程的计算机:
|
||||
|
||||
`shutdown /m {{\\主机名}}`
|
Loading…
Add table
Reference in a new issue