文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C# 操作IIS网站应用程序池

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

时间:2010-09-27  来源:韩天伟

//添加应用程序池空间引用

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,"启动失败");      

   }

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载