0

我正在编写一个 C# 应用程序来自动化几个常见的服务器管理任务,而我想要自动化的任务之一是关闭或重新启动服务器(因为许多其他应用程序必须按特定顺序停止,这很痛苦)。

在服务器上调用任务的最佳方式是什么?服务器和服务关闭的安全方法是什么?

4

1 回答 1

0

Use shutdown.exe of Windows.

using System.Diagnostics;

Process.Start("shutdown","-s -t 10");
于 2013-03-09T15:27:09.360 回答