使用bat文件重新启动服务器


1

我想做一个简单的事 bat 重新启动服务器的文件。它看起来像这样:

shutdown -r -f -t 60

但它所做的就是循环内部 cmd 窗口,打印命令>新行>打印命令。一遍又一遍。

控制 + Alt键 + 删除 只打开我进入RDP的机器上的菜单,而不是服务器本身。


什么是.bat文件?它不是shutdown.bat,是吗?此外,Ctrl-Alt-End是RDP会话中的Ctrl-Alt-Delete。
tombull89

@ tombull89 atrl-alt-end,搞定了。谢谢!
Jason94

Answers:


5

是否调用了批处理文件 shutdown.bat?如果是这样,脚本将不会调用系统重启,该名称会导致脚本循环。

尝试将批处理文件重命名为其他内容,或者作为一个好极客,转移到PowerShell。如果你决定转换,你需要 Restart-Computer 命令。


1
或明确: shutdown.EXE -r -f -t 60
MSalters
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.