C#操作IIS方法集合

C# 操作IIS方法集合
如果在win8,win7情况下报错:未知错误(0x80005000) ----见http://www.jb51.net/article/72881.htm

using System;
using System.Collections;
using System.Collections.Generic;
using System.DirectoryServices;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;

namespace IISControlHelper
{
  /// <summary>
  /// IIS 操作方法集合
  /// http://www.jb51.net/article/72881.htm 错误
  /// </summary>
  public class IISWorker
  {
    private static string HostName = "localhost";

    /// <summary>
    /// 获取本地IIS版本
    /// </summary>
    /// <returns></returns>
    public static string GetIIsVersion()
    {
      try
      {
        DirectoryEntry entry = new DirectoryEntry("IIS://" + HostName + "/W3SVC/INFO");
        string version = entry.Properties["MajorIISVersionNumber"].Value.ToString();
        return version;
      }
      catch (Exception se)
      {
        //说明一点:IIS5.0中没有(int)entry.Properties["MajorIISVersionNumber"].Value;属性,将抛出异常 证明版本为 5.0
        return string.Empty;
      }
    }

    /// <summary>
    /// 创建虚拟目录网站
    /// </summary>
    /// <param name="webSiteName">网站名称</param>
    /// <param name="physicalPath">物理路径</param>
    /// <param name="domainPort">站点+端口,如192.168.1.23:90</param>
    /// <param name="isCreateAppPool">是否创建新的应用程序池</param>
    /// <returns></returns>
    public static int CreateWebSite(string webSiteName, string physicalPath, string domainPort,bool isCreateAppPool)
    {
      DirectoryEntry root = new DirectoryEntry("IIS://" + HostName + "/W3SVC");
      // 为新WEB站点查找一个未使用的ID
      int siteID = 1;
      foreach (DirectoryEntry e in root.Children)
      {
        if (e.SchemaClassName == "IIsWebServer")
        {
          int ID = Convert.ToInt32(e.Name);
          if (ID >= siteID) { siteID = ID + 1; }
        }
      }
      // 创建WEB站点
      DirectoryEntry site = (DirectoryEntry)root.Invoke("Create", "IIsWebServer", siteID);
      site.Invoke("Put", "ServerComment", webSiteName);
      site.Invoke("Put", "KeyType", "IIsWebServer");
      site.Invoke("Put", "ServerBindings", domainPort + ":");
      site.Invoke("Put", "ServerState", 2);
      site.Invoke("Put", "FrontPageWeb", 1);
      site.Invoke("Put", "DefaultDoc", "Default.html");
      // site.Invoke("Put", "SecureBindings", ":443:");
      site.Invoke("Put", "ServerAutoStart", 1);
      site.Invoke("Put", "ServerSize", 1);
      site.Invoke("SetInfo");
      // 创建应用程序虚拟目录

      DirectoryEntry siteVDir = site.Children.Add("Root", "IISWebVirtualDir");
      siteVDir.Properties["AppIsolated"][0] = 2;
      siteVDir.Properties["Path"][0] = physicalPath;
      siteVDir.Properties["AccessFlags"][0] = 513;
      siteVDir.Properties["FrontPageWeb"][0] = 1;
      siteVDir.Properties["AppRoot"][0] = "LM/W3SVC/" + siteID + "/Root";
      siteVDir.Properties["AppFriendlyName"][0] = "Root";

      if (isCreateAppPool)
      {
        DirectoryEntry apppools = new DirectoryEntry("IIS://" + HostName + "/W3SVC/AppPools");

        DirectoryEntry newpool = apppools.Children.Add(webSiteName, "IIsApplicationPool");
        newpool.Properties["AppPoolIdentityType"][0] = "4"; //4
        newpool.Properties["ManagedPipelineMode"][0] = "0"; //0:集成模式 1:经典模式
        newpool.CommitChanges();
        siteVDir.Properties["AppPoolId"][0] = webSiteName;
      }

      siteVDir.CommitChanges();
      site.CommitChanges();
      return siteID;
    }

    /// <summary>
    /// 得到网站的物理路径
    /// </summary>
    /// <param name="rootEntry">网站节点</param>
    /// <returns></returns>
    public static string GetWebsitePhysicalPath(DirectoryEntry rootEntry)
    {
      string physicalPath = "";
      foreach (DirectoryEntry childEntry in rootEntry.Children)
      {
        if ((childEntry.SchemaClassName == "IIsWebVirtualDir") && (childEntry.Name.ToLower() == "root"))
        {
          if (childEntry.Properties["Path"].Value != null)
          {
            physicalPath = childEntry.Properties["Path"].Value.ToString();
          }
          else
          {
            physicalPath = "";
          }
        }
      }
      return physicalPath;
    }

    /// <summary>
    /// 获取站点名
    /// </summary>
    public static List<IISInfo> GetServerBindings()
    {
      List<IISInfo> iisList = new List<IISInfo>();
      string entPath = String.Format("IIS://{0}/w3svc", HostName);
      DirectoryEntry ent = new DirectoryEntry(entPath);
      foreach (DirectoryEntry child in ent.Children)
      {
        if (child.SchemaClassName.Equals("IIsWebServer", StringComparison.OrdinalIgnoreCase))
        {
          if (child.Properties["ServerBindings"].Value != null)
          {
            object objectArr = child.Properties["ServerBindings"].Value;
            string serverBindingStr = string.Empty;
            if (IsArray(objectArr))//如果有多个绑定站点时
            {
              object[] objectToArr = (object[])objectArr;
              serverBindingStr = objectToArr[0].ToString();
            }
            else//只有一个绑定站点
            {
              serverBindingStr = child.Properties["ServerBindings"].Value.ToString();
            }
            IISInfo iisInfo = new IISInfo();
            iisInfo.DomainPort = serverBindingStr;
            iisInfo.AppPool = child.Properties["AppPoolId"].Value.ToString();//应用程序池
            iisList.Add(iisInfo);
          }
        }
      }
      return iisList;
    }

    public static bool CreateAppPool(string appPoolName, string Username, string Password)
    {
      bool issucess = false;
      try
      {
        //创建一个新程序池
        DirectoryEntry newpool;
        DirectoryEntry apppools = new DirectoryEntry("IIS://" + HostName + "/W3SVC/AppPools");
        newpool = apppools.Children.Add(appPoolName, "IIsApplicationPool");

        //设置属性 访问用户名和密码 一般采取默认方式
        newpool.Properties["WAMUserName"][0] = Username;
        newpool.Properties["WAMUserPass"][0] = Password;
        newpool.Properties["AppPoolIdentityType"][0] = "3";
        newpool.CommitChanges();
        issucess = true;
        return issucess;
      }
      catch // (Exception ex)
      {
        return false;
      }
    }

    /// <summary>
    /// 建立程序池后关联相应应用程序及虚拟目录
    /// </summary>
    public static void SetAppToPool(string appname,string poolName)
    {
      //获取目录
      DirectoryEntry getdir = new DirectoryEntry("IIS://localhost/W3SVC");
      foreach (DirectoryEntry getentity in getdir.Children)
      {
        if (getentity.SchemaClassName.Equals("IIsWebServer"))
        {
          //设置应用程序程序池 先获得应用程序 在设定应用程序程序池
          //第一次测试根目录
          foreach (DirectoryEntry getchild in getentity.Children)
          {
            if (getchild.SchemaClassName.Equals("IIsWebVirtualDir"))
            {
              //找到指定的虚拟目录.
              foreach (DirectoryEntry getsite in getchild.Children)
              {
                if (getsite.Name.Equals(appname))
                {
                  //【测试成功通过】
                  getsite.Properties["AppPoolId"].Value = poolName;
                  getsite.CommitChanges();
                }
              }
            }
          }
        }
      }
    }

    /// <summary>
    /// 判断object对象是否为数组
    /// </summary>
    public static bool IsArray(object o)
    {
      return o is Array;
    }
  }
}

希望本文所述对大家的C#程序设计有所帮助。

(0)

相关推荐

  • C#创建IIS虚拟目录的方法

    本文实例讲述了C#创建IIS虚拟目录的方法.分享给大家供大家参考.具体分析如下: DirectoryEntry是.Net给我们的一大礼物,他的名字我们就知道他的功能--目录入口.使用过ADSI的人都知道操作IIS,WinNT这些时,我们还需要提供他们的Path,操作IIS时,这个Path的格式为: 复制代码 代码如下: IIS://ComputerName/Service/Website/Directory ComputerName:即操作的服务器的名字,可以是名字也可以是IP,经常用的就是lo

  • C#实现获取IIS站点及虚拟目录信息的方法

    本文实例讲述了C#实现获取IIS站点及虚拟目录信息的方法.分享给大家供大家参考.具体如下: using System; using System.DirectoryServices; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { DirectoryEntry rootEntr

  • C#实现创建,删除,查找,配置虚拟目录实例详解

    本文实例讲述了C#实现创建,删除,查找,配置虚拟目录的方法.分享给大家供大家参考.具体如下: #region<<虚拟目录>> /// <summary> /// 创建虚拟目录 /// </summary> /// <param >虚拟目录别名</param> /// <param >内容所在路径</param> public static bool CreateVirtualDirectory(string w

  • C#操作IIS程序池及站点的创建配置实现代码

    首先要对Microsoft.Web.Administration进行引用,它主要是用来操作IIS7: using System.DirectoryServices;using Microsoft.Web.Administration; 1:首先是对本版IIS的版本进行配置: 复制代码 代码如下: DirectoryEntry getEntity = new DirectoryEntry("IIS://localhost/W3SVC/INFO");            string V

  • c#操作iis根目录的方法

    本文实例讲述了c#操作iis根目录的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.DirectoryServices; using System.Collections; namespace IISManagement { /// <summary> /// IISManager 的摘要说明. /// </summary> public class IISManager { //定义需要使用的 private string _

  • c# 解决IIS写Excel的权限问题

    具体配置方法如下: 1:在服务器上安装office的Excel软件. 2:在"开始"->"运行"中输入dcomcnfg.exe启动"组件服务" 3:依次双击"组件服务"->"计算机"->"我的电脑"->"DCOM配置" 4:在"DCOM配置"中找到"Microsoft Excel 应用程序",在它上面点击

  • C#修改IIS站点framework版本号的方法

    本文实例讲述了C#修改IIS站点framework版本号的方法.分享给大家供大家参考.具体如下: 使用ASP.NET IIS 注册工具 (Aspnet_regiis.exe)可以方便地更新 ASP.NET 应用程序的脚本映射,使其指向与该工具关联的 ASP.NET ISAPI 版本. 关于ASP.NET IIS 注册工具的更详细的内容,请参考MSDN. 在控制台上我们使用下面的命令可以修改一个虚拟目录的Asp.Net版本: 复制代码 代码如下: Aspnet_iis.exe –s path 我们

  • 用C#操纵IIS(代码)

    using System;  using System.DirectoryServices;  using System.Collections;  using System.Text.RegularExpressions;  using System.Text;  /**   * @author 吴海燕   * @email  wuhy80-usual@yahoo.com   * 2004-6-25 第一版   */   namespace Wuhy.ToolBox  {       /// 

  • C#操作IIS方法集合

    C# 操作IIS方法集合 如果在win8,win7情况下报错:未知错误(0x80005000) ----见http://www.jb51.net/article/72881.htm using System; using System.Collections; using System.Collections.Generic; using System.DirectoryServices; using System.Linq; using System.Net; using System.Tex

  • js操作textarea方法集合封装(兼容IE,firefox)

    注意:在firefox下 添加字符串的时候有个bug 就是scrollTop 会等于0,当然解决了,但是不够完美.如果有高手也研究过,麻烦指点下. 完整测试代码: 复制代码 代码如下: <textarea id="testlujun" style="width: 300px; height: 50px;">abcdefghijklmnopqrstuvwxyz</textarea><br /><input onclick=&q

  • .Net中如何操作IIS的虚拟目录原理分析及实现方案

    .Net中实际上已经为我们在这方面做得很好了.FCL中提供了不少的类来帮助我们完成这项工作,让我们的开发工作变非常简单和快乐.编程控制IIS实际上很简单,和ASP一样,.Net中需要使用ADSI来操作IIS,但是此时我们不再需要GetObject这个东东了,因为Net为我们提供了更加强大功能的新东东. System.DirectoryServices命名空间中包括了些强大的东东--DirectoryEntry, DirectoryEntries,它们为我们提供了访问活动目录的强大功能,在这些类允

  • JavaScript利用HTML DOM进行文档操作的方法

    HTML DOM 树 一.DOM简介 DOM是W3C制定的用于访问诸如XML和XHTML等结构化文档的标准. W3C文档对象模型(DOM)是一个使程序和脚本有能力动态地访问和更新文档的内容.结构以及样式的平台和语言中立的接口 核心DOM:用于任何结构化文档的标准模型 XML DOM:用于XML文档的标准模型.是用于获取.更改.添加或删除XML元素的标准. HTML DOM: 用于HTML文档的标准模型.定义了所有HTML元素的对象和属性,以及访问它们的方法(接口). 二.DOM节点 根据DOM规

  • JS操作JSON方法总结(推荐)

    JSON概述: JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,采用完全独立于语言的文本格式,是理想的数据交换格式.同时,JSON是 JavaScript 原生格式,这意味着在 JavaScript 中处理 JSON数据不需要任何特殊的 API 或工具包. JSON:JavaScript 对象表示法(JavaScript Object Notation). JSON 是存储和交换文本信息的语法.类似 XML. JSON 比 XML 更小.更快,更易解

  • Java编程实现调用com操作Word方法实例代码

    实例代码如下: import com.jacob.activeX.ActiveXComponent; import com.jacob.com.Dispatch; import com.jacob.com.Variant; /** * jacob操作MSword类 * @author */ public class WordBean { // word文档 private Dispatch doc; // word运行程序对象 private ActiveXComponent word; //

  • thinkPHP框架通过Redis实现增删改查操作的方法详解

    本文实例讲述了thinkPHP框架通过Redis实现增删改查操作的方法.分享给大家供大家参考,具体如下: 一.概述 Redis是一个NoSQL数据库,由于其数据类型的差异,所以要在MVC框架中实现CURD操作,比较繁锁.事实上在ThinkPHP框架中,只能实现简单的缓存应用.而不像MongoDB那样能够实现常见数据库的CURD操作.本文章将通过扩展的方式,实现Redis的CURD操作,这样我们就可以像操作普通的Mysql数据库那样实现Redis的编程了. 二.实现过程 接下为将以ThinkPHP

  • Java实现队列的三种方法集合

    数组实现队列 //数组实现队列 class queue{ int[] a = new int[5]; int i = 0; //入队操作 public void in(int m) { a[i++] = m; } // 出队列操作 取出最前面的值 通过循环遍历把所有的数据向前一位 public int out() { int index = 0; int temp = a[0]; for(int j = 0;j < i;j++) { a[j] = a[j + 1]; } return temp;

  • redis中Hash字典操作的方法

    目录 1.Redis操作之Hash操作 redis hash字典操作 1.Redis操作之Hash操作 redis支持五大数据类型,只支持第一层,也就说字典的value值,必须是字符串 如果value值想存字典,必须用json转换一下,转成字符串 redis hash字典操作 reids:{ k1:'dafdadfasf', m1:{ 'key2':value2, 'key1':value1, } } 1.hset(name, key, value),插入值 # name对应的hash中设置一个

随机推荐