您的位置:首页 > 运维架构 > 网站架构

C# 操作IIS网站应用程序池

2010-09-27 14:30 411 查看
//添加应用程序池空间引用

using System.DirectoryServices;

代码

string method="Start"; //Start开启 Recycle回收 Stop 停止
string AppPoolName = "chengxuchiname";

try

{

    DirectoryEntry appPool = new DirectoryEntry("IIS://localhost/W3SVC/AppPools");

    DirectoryEntry findPool = appPool.Children.Find(AppPoolName,"IIsApplicationPool");

    findPool.Invoke(method,null);

    appPool.CommitChanges();

    appPool.Close();

MessageBox.Show("应用程序池名称启动成功","启动成功");

}

catch(Exception ex)

{

MessageBox.Show(ex.Message,"启动失败");

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: