标签: c# iis-7 default
如何在C#中以编程方式启动/停止IIS7的默认网站和任何应用程序池?
答案 0 :(得分:2)
这听起来像是你想要使用WMI的东西。 IIsWebServer类可能是开始查找的好地方,您可以找到here的文档。 here是一个用于在C#中停止和启动网站的代码项目文章。
答案 1 :(得分:1)
您可以使用System.DirectoryServices
http://terrapinstation.wordpress.com/2008/06/12/restart-iis-application-pool-from-aspnet-page/