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.
我正在编写一个 C# 应用程序来自动化几个常见的服务器管理任务,而我想要自动化的任务之一是关闭或重新启动服务器(因为许多其他应用程序必须按特定顺序停止,这很痛苦)。
在服务器上调用任务的最佳方式是什么?服务器和服务关闭的安全方法是什么?
Use shutdown.exe of Windows.
shutdown.exe
using System.Diagnostics; Process.Start("shutdown","-s -t 10");