C#操作IIS程序池及站点的创建配置

最近在做一个WEB程序的安装包;对一些操作IIS进行一个简单的总结;主要包括对IIS进行站点的新建以及新建站点的NET版本的选择,还有针对IIS7程序池的托管模式以及版本的操作;首先要对Microsoft.Web.Administration进行引用,它主要是用来操作IIS7;

using
System.DirectoryServices;
using
Microsoft.Web.Administration;

1:首先是对本版IIS的版本进行配置:

DirectoryEntry getEntity = new DirectoryEntry("IIS://localhost/W3SVC/INFO");
string Version = getEntity.Properties["MajorIISVersionNumber"].Value.ToString();
MessageBox.Show("IIS版本为:" + Version);

2:是判断程序池是存在;


/// <summary>
/// 判断程序池是否存在
/// </summary>
/// <param name="AppPoolName">程序池名称</param>
/// <returns>true存在 false不存在</returns>
private bool IsAppPoolName(string AppPoolName)
{
bool result = false;
DirectoryEntry appPools = new DirectoryEntry("IIS://localhost/W3SVC/AppPools");
foreach (DirectoryEntry getdir in appPools.Children)
{
if (getdir.Name.Equals(AppPoolName))
{
result = true;
}
}
return result;
}

3:删除应用程序池


/// <summary>
/// 删除指定程序池
/// </summary>
/// <param name="AppPoolName">程序池名称</param>
/// <returns>true删除成功 false删除失败</returns>
private bool DeleteAppPool(string AppPoolName)
{
bool result = false;
DirectoryEntry appPools = new DirectoryEntry("IIS://localhost/W3SVC/AppPools");
foreach (DirectoryEntry getdir in appPools.Children)
{
if (getdir.Name.Equals(AppPoolName))
{
try
{
getdir.DeleteTree();
result = true;
}
catch
{
result = false;
}
}
}
return result;
}

4:创建应用程序池
(对程序池的设置主要是针对IIS7;IIS7应用程序池托管模式主要包括集成跟经典模式,并进行NET版本的设置)


string AppPoolName = "LamAppPool";
if (!IsAppPoolName(AppPoolName))
{
DirectoryEntry newpool;
DirectoryEntry appPools = new DirectoryEntry("IIS://localhost/W3SVC/AppPools");
newpool = appPools.Children.Add(AppPoolName, "IIsApplicationPool");
newpool.CommitChanges();
MessageBox.Show(AppPoolName + "程序池增加成功");
}
#endregion

#region 修改应用程序的配置(包含托管模式及其NET运行版本)
ServerManager sm = new ServerManager();
sm.ApplicationPools[AppPoolName].ManagedRuntimeVersion = "v4.0";
sm.ApplicationPools[AppPoolName].ManagedPipelineMode = ManagedPipelineMode.Classic; //托管模式Integrated为集成 Classic为经典
sm.CommitChanges();
MessageBox.Show(AppPoolName + "程序池托管管道模式:" + sm.ApplicationPools[AppPoolName].ManagedPipelineMode.ToString() + "运行的NET版本为:" + sm.ApplicationPools[AppPoolName].ManagedRuntimeVersion);

运用C#代码来对IIS7程序池托管管道模式及版本进行修改;

5:针对IIS6的NET版进行设置;因为此处我是用到NET4.0所以V4.0.30319
若是NET2.0则在这进行修改 v2.0.50727


//启动aspnet_regiis.exe程序
string fileName = Environment.GetEnvironmentVariable("windir") + @"\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe";
ProcessStartInfo startInfo = new ProcessStartInfo(fileName);
//处理目录路径
string path = vdEntry.Path.ToUpper();
int index = path.IndexOf("W3SVC");
path = path.Remove(0, index);
//启动ASPnet_iis.exe程序,刷新脚本映射
startInfo.Arguments = "-s " + path;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
string errors = process.StandardError.ReadToEnd();

6:平常我们可能还得对IIS中的MIME类型进行增加;下面主要是我们用到两个类型分别是:xaml,xap


IISOle.MimeMapClass NewMime = new IISOle.MimeMapClass();
NewMime.Extension = ".xaml"; NewMime.MimeType = "application/xaml+xml";
IISOle.MimeMapClass TwoMime = new IISOle.MimeMapClass();
TwoMime.Extension = ".xap"; TwoMime.MimeType = "application/x-silverlight-app";
rootEntry.Properties["MimeMap"].Add(NewMime);
rootEntry.Properties["MimeMap"].Add(TwoMime);
rootEntry.CommitChanges();

7:下面是做安装时一段对IIS进行操作的代码;兼容IIS6及IIS7;新建虚拟目录并对相应的属性进行设置;对IIS7还进行新建程序池的程序;并设置程序池的配置;


/// <summary>
/// 创建网站
/// </summary>
/// <param name="siteInfo"></param>
public void CreateNewWebSite(NewWebSiteInfo siteInfo)
{
if (!EnsureNewSiteEnavaible(siteInfo.BindString))
{
throw new Exception("该网站已存在" + Environment.NewLine + siteInfo.BindString);
}
DirectoryEntry rootEntry = GetDirectoryEntry(entPath);

newSiteNum = GetNewWebSiteID();
DirectoryEntry newSiteEntry = rootEntry.Children.Add(newSiteNum, "IIsWebServer");
newSiteEntry.CommitChanges();

newSiteEntry.Properties["ServerBindings"].Value = siteInfo.BindString;
newSiteEntry.Properties["ServerComment"].Value = siteInfo.CommentOfWebSite;
newSiteEntry.CommitChanges();
DirectoryEntry vdEntry = newSiteEntry.Children.Add("root", "IIsWebVirtualDir");
vdEntry.CommitChanges();
string ChangWebPath = siteInfo.WebPath.Trim().Remove(siteInfo.WebPath.Trim().LastIndexOf(‘\\‘),1);
vdEntry.Properties["Path"].Value = ChangWebPath;

vdEntry.Invoke("AppCreate", true);//创建应用程序

vdEntry.Properties["AccessRead"][0] = true; //设置读取权限
vdEntry.Properties["AccessWrite"][0] = true;
vdEntry.Properties["AccessScript"][0] = true;//执行权限
vdEntry.Properties["AccessExecute"][0] = false;
vdEntry.Properties["DefaultDoc"][0] = "Login.aspx";//设置默认文档
vdEntry.Properties["AppFriendlyName"][0] = "LabManager"; //应用程序名称
vdEntry.Properties["AuthFlags"][0] = 1;//0表示不允许匿名访问,1表示就可以3为基本身份验证,7为windows继承身份验证
vdEntry.CommitChanges();

//操作增加MIME
//IISOle.MimeMapClass NewMime = new IISOle.MimeMapClass();
//NewMime.Extension = ".xaml"; NewMime.MimeType = "application/xaml+xml";
//IISOle.MimeMapClass TwoMime = new IISOle.MimeMapClass();
//TwoMime.Extension = ".xap"; TwoMime.MimeType = "application/x-silverlight-app";
//rootEntry.Properties["MimeMap"].Add(NewMime);
//rootEntry.Properties["MimeMap"].Add(TwoMime);
//rootEntry.CommitChanges();

#region 针对IIS7
DirectoryEntry getEntity = new DirectoryEntry("IIS://localhost/W3SVC/INFO");
int Version =int.Parse(getEntity.Properties["MajorIISVersionNumber"].Value.ToString());
if (Version > 6)
{
#region 创建应用程序池
string AppPoolName = "LabManager";
if (!IsAppPoolName(AppPoolName))
{
DirectoryEntry newpool;
DirectoryEntry appPools = new DirectoryEntry("IIS://localhost/W3SVC/AppPools");
newpool = appPools.Children.Add(AppPoolName, "IIsApplicationPool");
newpool.CommitChanges();
}
#endregion

#region 修改应用程序的配置(包含托管模式及其NET运行版本)
ServerManager sm = new ServerManager();
sm.ApplicationPools[AppPoolName].ManagedRuntimeVersion = "v4.0";
sm.ApplicationPools[AppPoolName].ManagedPipelineMode = ManagedPipelineMode.Classic; //托管模式Integrated为集成 Classic为经典
sm.CommitChanges();
#endregion

vdEntry.Properties["AppPoolId"].Value = AppPoolName;
vdEntry.CommitChanges();
}
#endregion

//启动aspnet_regiis.exe程序
string fileName = Environment.GetEnvironmentVariable("windir") + @"\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe";
ProcessStartInfo startInfo = new ProcessStartInfo(fileName);
//处理目录路径
string path = vdEntry.Path.ToUpper();
int index = path.IndexOf("W3SVC");
path = path.Remove(0, index);
//启动ASPnet_iis.exe程序,刷新脚本映射
startInfo.Arguments = "-s " + path;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
string errors = process.StandardError.ReadToEnd();
if (errors != string.Empty)
{
throw new Exception(errors);
}

}


string entPath = String.Format("IIS://{0}/w3svc", "localhost");

public DirectoryEntry GetDirectoryEntry(string entPath)
{
DirectoryEntry ent = new DirectoryEntry(entPath);
return ent;
}

public class NewWebSiteInfo
{
private string hostIP; // 主机IP
private string portNum; // 网站端口号
private string descOfWebSite; // 网站表示。一般为网站的网站名。例如"www.dns.com.cn"
private string commentOfWebSite;// 网站注释。一般也为网站的网站名。
private string webPath; // 网站的主目录。例如"e:\ mp"

public NewWebSiteInfo(string hostIP, string portNum, string descOfWebSite, string commentOfWebSite, string webPath)
{
this.hostIP = hostIP;
this.portNum = portNum;
this.descOfWebSite = descOfWebSite;
this.commentOfWebSite = commentOfWebSite;
this.webPath = webPath;
}

public string BindString
{
get
{
return String.Format("{0}:{1}:{2}", hostIP, portNum, descOfWebSite); //网站标识(IP,端口,主机头值)
}
}

public string PortNum
{
get
{
return portNum;
}
}

public string CommentOfWebSite
{
get
{
return commentOfWebSite;
}
}

public string WebPath
{
get
{
return webPath;
}
}
}

8:下面的代码是对文件夹权限进行设置,下面代码是创建Everyone
并给予全部权限


/// <summary>
/// 设置文件夹权限 处理给EVERONE赋予所有权限
/// </summary>
/// <param name="FileAdd">文件夹路径</param>
public void SetFileRole()
{
string FileAdd = this.Context.Parameters["installdir"].ToString();
FileAdd = FileAdd.Remove(FileAdd.LastIndexOf(‘\\‘), 1);
DirectorySecurity fSec = new DirectorySecurity();
fSec.AddAccessRule(new FileSystemAccessRule("Everyone",FileSystemRights.FullControl,InheritanceFlags.ContainerInherit|InheritanceFlags.ObjectInherit,PropagationFlags.None,AccessControlType.Allow));
System.IO.Directory.SetAccessControl(FileAdd, fSec);
}

C#操作IIS程序池及站点的创建配置

时间: 2024-10-29 19:10:31

C#操作IIS程序池及站点的创建配置的相关文章

C#使用DirectoryEntry操作IIS创建网站和虚拟路径

在.net中有一个比较好的字符串参数替换的方案RazorEngine推荐大家看看原网站,然后做个小联系然后你就懂啦 首先呢得下载一个吧, vs中tools-> Library Paging Manager->Manager Nuget 在然后呢Install-Package RazorEngine 等待搜索结束吧,然后下载下来两个dll RazorEngine.dll  没说的一定要引用到工程里面的 System.Web.Razor.dll 这个dll工程里面是引用了的  多以会提示替换,别犹

C# 玩转计算机系列(二)-操作IIS服务

之前由于工作需要自己做一个一键部署的小工具,实现三个模块的功能:TFS操作创建映射并获取最新源代码:SQL Server数据库注册表配置数据库连接:IIS站点部署,生成可访问的IIS站点.由于是基于自己的工作环境下的开发,所以在TFS和SQL Server配置工具化实现,有一些点是默认按照公司的环境配置参数默认的,虽然不是广泛适用每一种情况的环境部署,但是在学习这三个模块的开发过程中,还是有很多东西是可以值得分享的. 今天先分享一下,如何通过工具化实现IIS站点部署和配置,为了可复用性,IIS操

C# 使用代码来操作 IIS

由于需要维护网站的时候,可以自动将所有的站点HTTP重定向到指定的静态页面上. 要操作 IIS 主要使用到的是“Microsoft.Web.Administration.dll”. 该类库不可以在引用里找到,存放在“C:\Windows\System32\inetsrv”目录下. Microsoft.Web.Administration.ServerManager 该类是操作 IIS 的类. var siteName = "admin.rapid.com"; using (Server

.Net中如何操作IIS

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

利用ASP.NET操作IIS (可以制作安装程序)

很多web安装程序都会在IIS里添加应用程序或者应用程序池,早期用ASP.NET操作IIS非常困难,不过,从7.0开始,微软提供了 Microsoft.Web.Administration 类,可以很容易操作IIS. 本文主要介绍四点: 一.添加应用程序 二.添加应用程序池 三.设置应用程序所使用的应用程序池 四.IIS里其他属性的设置 首先,必须确保电脑上已经安装了IIS,安装后,系统默认会注册一个DLL,通常位置是 C:\Windows\assembly\GAC_MSIL\Microsoft

用ASP编程控制在IIS建立Web站点

''******************************************************* '' 创建一个WebServer '' 必须参数:WRoot,为创建站点的物理目录:WComment为站点说明:WPort为站点端口:ServerRun为是否自动运行 '' 当创建成功时返回1,失败时提示退出并返回0,当创建站点成功但启动失败时返回2 ''******************************************************* ''******

WIN10 应用程序修改IIS程序池配置及Azure云服务修改程序池配置避免自动回收

以下内容源自需修改Azure云服务修改程序池的定期回收配置在本地测试及部署到Azure的记录. 一.Win10下修改指定网站应用程序池的配置 1.修改IIS程序池的代码如下: 引用命名空间 using Microsoft.Web.Administration; //初始化IIS操作类 using (ServerManager serverManager = new ServerManager()) { var siteName = "website";//网站名称 var siteAp

Quartz定时任务和IIS程序池闲置超时时间冲突解决方案

一.问题描述 Bs项目中用Quartz功能执行一个定时任务(每隔5分钟执行一个Job),正常情况,Quartz定时任务会5分钟执行一次,但IIS程序池闲置 超时默认为20分钟,造成的结果是:定时任务只执行了4次.那么怎么解决程序池闲置超时引进Quartz定时任务停止执行问题? 二.解决方案方案一:设置IIS默认闲置超时为1740(跟程序池默认回收时间1740)方案二:IIS服务器规定的时间内,定时向服务器取一次数据 三.方案介绍1)方案一:设置IIS默认闲置超时为1740(跟程序池默认回收时间1

[译]深入字节码操作:使用ASM和Javassist创建审核日志

深入字节码操作:使用ASM和Javassist创建审核日志 原文链接:https://blog.newrelic.com/2014/09/29/diving-bytecode-manipulation-creating-audit-log-asm-javassist/ 在堆栈中使用Spring和Hibernate,您的应用程序的字节码可能会在运行时被增强或处理. 字节码是Java虚拟机(JVM)的指令集,所有在JVM上运行的语言都必须最终编译为字节码. 操作字节码原因如下: 程序分析: 查找应用