Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建在 10 秒内关闭我的电脑的关机快捷方式。 那是什么语法?
创建一个新的快捷方式并将其放入该位置
%windir%\System32\shutdown.exe -s -f -t 10
这将需要 10 秒才能关闭
对于窗户...
shutdown /s /t 10 /f
假设它是 Windows,您可以编写一个批处理文件,shutdown -t 10这应该可以解决问题。
shutdown -t 10