ASP.NET C# 如何在程序中控制IIS服务或应用程序池重启?

停止IIS服务
ServiceController sc = new ServiceController("iisadmin");
if(sc.Status==ServiceControllerStatus.Running)

{

sc.Stop();
}

重启IIS服务
ServiceController sc = new ServiceController("iisadmin");
 sc.Start();

重启进程
using System.Diagnostics;
Process.Start("iisreset");

转自:http://blog.csdn.net/educast/article/details/6227541

上一篇:python接口自动化(响应对象方法)


下一篇:MySQL优化:explain using temporary