C#ASP.NET打包安装部署文件一键安装网站,包括IIS站点创建、数据库附加。

借鉴 https://www.cnblogs.com/budongjiuchaziliao/p/6866815.html


主要替换各个配置文件的key

using Microsoft.Web.Administration;
using System;
using System.Collections;
using System.ComponentModel;
using System.Data.SqlClient;
using System.Diagnostics;
using System.DirectoryServices;
using System.IO;
using System.Security.AccessControl;
using System.Windows.Forms;

namespace ServerInstall
{
    [RunInstaller(true)]
    public partial class Installer1 : System.Configuration.Install.Installer
    {
        public Installer1()
        {
            InitializeComponent();
        }

        //iis服务器地址下面方法会用到所以定义公共
        string iis = "";
        //重写Install
        public override void Install(IDictionary stateSaver)
        {
            base.Install(stateSaver);
            //接收参数

            //数据库服务器地址
            string databaseServer = Context.Parameters["server"].ToString().Replace(@"\\", @"\");
            //账号
            string user = Context.Parameters["user"].ToString();
            //密码
            string pwd = Context.Parameters["pwd"].ToString();
            //安装路径
            string targetdir = Context.Parameters["targetdir"].ToString().Replace(@"\\", @"\");
            //IIS地址
            iis = this.Context.Parameters["iis"].ToString();
            //ip
            string ip = this.Context.Parameters["ip"].ToString();
            //端口
            string port = this.Context.Parameters["port"].ToString();
            //网站名
            string isname = this.Context.Parameters["isname"].ToString();

            //File.WriteAllText(Path.Combine(targetdir, "log11.txt"), "databaseServer:" + databaseServer + "/n/r" + "user:" + user + "/n/r" + "pwd:" + pwd + "/n/r" + "targetdir:" + targetdir + "/n/r" + "iis:" + iis + "/n/r" + "port:" + port + "/n/r" + "isname" + isname + "/n/r" + "serverID:" + serverID);

            try
            {
                //实例化IIS站点配置信息
                NewWebSiteInfo nwsif = new NewWebSiteInfo(ip, port, isname.Trim(), (isname.Trim().Length > 0 ? isname : "SoReal"), targetdir + "\\web");
                //创建IIS站点
                CreateNewWebSite(nwsif);

                databaseServer = String.Format("server={0};database=monitorDB;uid={1};pwd={2}", databaseServer, user, pwd);

                //修改网站的配置文件
                SaveWeb(targetdir, databaseServer);
                //

                #region 附加数据库

                //给文件添加"Authenticated Users,Everyone,Users"用户组的完全控制权限 ,要附加的数据库文件必须加权限否则无法附加
                if (File.Exists(targetdir + "web\\App_Data\\monitorDB.mdf"))
                {
                    FileInfo fi = new FileInfo(targetdir + "web\\App_Data\\monitorDB.mdf");
                    System.Security.AccessControl.FileSecurity fileSecurity = fi.GetAccessControl();
                    fileSecurity.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity.AddAccessRule(new FileSystemAccessRule("Authenticated Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fi.SetAccessControl(fileSecurity);
                    FileInfo fi1 = new FileInfo(targetdir + "web\\App_Data\\monitorDB_log.ldf");
                    System.Security.AccessControl.FileSecurity fileSecurity1 = fi1.GetAccessControl();
                    fileSecurity1.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity1.AddAccessRule(new FileSystemAccessRule("Authenticated Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity1.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fi1.SetAccessControl(fileSecurity1);
                }

                string connectionString = GetConnectionString(null).Replace(@"\\", @"\");

                //保存数据连接词,为卸载做准备
                File.WriteAllText(Path.Combine(targetdir + "web\\" + "App_Data\\", "log.txt"), connectionString);

                try
                {
                    using (SqlConnection connection = new SqlConnection(connectionString))
                    {
                        connection.Open();
                        //使用数据库文件创建数据库,所以添加的网站项目中需要有App_Data文件夹和数据库文件(monitorDB.mdf)和日志文件(monitorDB_log.ldf)
                        string sql = "sp_attach_db 'monitorDB','" + targetdir + "web\\App_Data\\monitorDB.mdf','" + targetdir + "web\\App_Data\\monitorDB_log.ldf'";


                        File.AppendAllText(Path.Combine(targetdir + "\\" + "web\\App_Data\\", "log.txt"), sql);
                        ExecuteSQL(connection, sql);
                        connection.Close();

                        //修改配置文件                      

                        SaveSocket(targetdir, databaseServer, ip, port);

                        SaveAudio(targetdir, databaseServer);

                        SaveRegist(targetdir, databaseServer);
                    }
                }
                catch (Exception ex)
                {
                    File.AppendAllText(Path.Combine(targetdir + "\\" + "web\\App_Data\\", "log.txt"), ex.ToString());
                    MessageBox.Show("安装出错了1!\n" + ex.ToString(), "出错啦!");
                }

                #endregion
            }
            catch (Exception ex)
            {
                File.AppendAllText(Path.Combine(targetdir + "\\" + "web\\App_Data\\", "log.txt"), ex.ToString());
                MessageBox.Show("安装出错了!2\n" + ex.ToString(), "出错啦!");
            }
        }

        /// <summary>
        /// 执行SQL语句
        /// </summary>
        /// <param name="connection"></param>
        /// <param name="sql"></param>
        void ExecuteSQL(SqlConnection connection, string sql)
        {
            SqlCommand cmd = new SqlCommand(sql, connection);
            cmd.ExecuteNonQuery();
        }

        /// <summary>
        /// 获取数据库登陆连接字符串
        /// </summary>
        /// <param name="databasename"></param>
        /// <returns></returns>
        private string GetConnectionString(string databasename)
        {
            return "server=" + Context.Parameters["server"].ToString() + ";database=" + (string.IsNullOrEmpty(databasename) ? "master" : databasename) + ";User ID=" + Context.Parameters["user"].ToString() + ";Password=" + Context.Parameters["pwd"].ToString();
        }

        /// <summary>
        /// 创建IIS站点
        /// </summary>
        /// <param name="siteInfo">新站点配置信息</param>
        public void CreateNewWebSite(NewWebSiteInfo siteInfo)
        {
            string entPath = String.Format("IIS://{0}/W3SVC", iis);

            //SetFileRole();

            if (!EnsureNewSiteEnavaible(siteInfo.BindString, entPath))
            {
                throw new Exception("该网站已存在" + Environment.NewLine + siteInfo.BindString);
            }

            DirectoryEntry rootEntry = new DirectoryEntry(entPath);
            //TODO GetNewWebSiteID(entPath)
            string newSiteNum = "3";// GetNewWebSiteID();

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

            newSiteEntry.Properties["ServerBindings"].Value = siteInfo.BindString;
            newSiteEntry.Properties["ServerComment"].Value = siteInfo.CommentOfWebSite;
            newSiteEntry.Properties["ServerAutoStart"].Value = true;//网站是否启动
            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["ServerAutoStart"].Value = 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] = "default.cshtml";//设置默认文档
            vdEntry.Properties["AppFriendlyName"][0] = "SoReal"; //应用程序名称           
            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://" + iis + "/W3SVC/INFO");
            int Version = int.Parse(getEntity.Properties["MajorIISVersionNumber"].Value.ToString());
            if (Version > 6)
            {
                #region 创建应用程序池
                string AppPoolName = "SoReal";
                if (!IsAppPoolName(AppPoolName))
                {
                    DirectoryEntry newpool;
                    DirectoryEntry appPools = new DirectoryEntry("IIS://" + iis + "/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);
            }

        }

        #region 判定网站是否存在

        /// <summary>
        /// 确定一个新的网站与现有的网站没有相同的。 
        /// 这样防止将非法的数据存放到IIS里面去 
        /// </summary>
        /// <param name="bindStr">网站邦定信息</param>
        /// <returns>真为可以创建,假为不可以创建</returns>
        public bool EnsureNewSiteEnavaible(string bindStr, string entPath)
        {
            DirectoryEntry ent = new DirectoryEntry(entPath);

            foreach (DirectoryEntry child in ent.Children)
            {
                if (child.SchemaClassName == "IIsWebServer" && child.Properties["ServerBindings"].Value != null && child.Properties["ServerBindings"].Value.ToString() == bindStr)
                {
                    return false;
                }
            }
            return true;
        }

        /// <summary>
        /// 设置文件夹权限 处理给EVERONE赋予所有权限
        /// </summary>
        /// <param name="FileAdd">文件夹路径</param>
        public void SetFileRole()
        {
            string FileAdd = this.Context.Parameters["targetdir"].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);
        }



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

        public string GetNewWebSiteID()
        {
            ArrayList list = new ArrayList();
            string tempStr;
            string entPath = string.Format("IIS://{0}/w3svc", iis);
            DirectoryEntry ent = GetDirectoryEntry(entPath);
            foreach (DirectoryEntry child in ent.Children)
            {
                if (child.SchemaClassName == "IIsWebServer")
                {
                    tempStr = child.Name.ToString();
                    list.Add(Convert.ToInt32(tempStr));
                }
            }
            list.Sort();
            var newId = Convert.ToInt32(list[list.Count - 1]) + 1;
            return newId.ToString();
        }

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


        #region
        /// <summary>
        /// 保存采集服务端配置文件
        /// </summary>
        /// <param name="targetdir"></param>
        /// <param name="databaseServer"></param>
        private void SaveWeb(string targetdir, string databaseServer)
        {
            string filename = "Web.config";
            try
            {
                filename = Path.Combine(targetdir + "\\web", filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);
                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }

        /// <summary>
        /// 保存采集服务端配置文件
        /// </summary>
        /// <param name="targetdir"></param>
        /// <param name="databaseServer"></param>
        /// <param name="ip"></param>
        /// <param name="port"></param>
        /// <param name="serverIP"></param>
        /// <param name="serverPort"></param>
        private void SaveSocket(string targetdir, string databaseServer, string ip, string port)
        {
            string filename = "winSocketServer.exe.config";
            try
            {
                filename = Path.Combine(targetdir, filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);
                config.SetValue("ip", ip);
                string url = string.Format("http://{0}:{1}/html/home.html", "localhost", port);
                config.SetValue("url", url);

                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }


        private void SaveAudio(string targetdir, string databaseServer)
        {
            string filename = "SoReal.Audio.Server.exe.config";
            try
            {
                filename = Path.Combine(targetdir, filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);

                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }

        private void SaveRegist(string targetdir, string databaseServer)
        {
            string filename = "register.exe.config";
            try
            {
                filename = Path.Combine(targetdir, filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);

                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }
        #endregion 修改配置文件

    }
}

using Microsoft.Web.Administration;
using System;
using System.Collections;
using System.ComponentModel;
using System.Data.SqlClient;
using System.Diagnostics;
using System.DirectoryServices;
using System.IO;
using System.Security.AccessControl;
using System.Windows.Forms;

namespace ServerInstall
{
    [RunInstaller(true)]
    public partial class Installer1 : System.Configuration.Install.Installer
    {
        public Installer1()
        {
            InitializeComponent();
        }

        //iis服务器地址下面方法会用到所以定义公共
        string iis = "";
        //重写Install
        public override void Install(IDictionary stateSaver)
        {
            base.Install(stateSaver);
            //接收参数

            //数据库服务器地址
            string databaseServer = Context.Parameters["server"].ToString().Replace(@"\\", @"\");
            //账号
            string user = Context.Parameters["user"].ToString();
            //密码
            string pwd = Context.Parameters["pwd"].ToString();
            //安装路径
            string targetdir = Context.Parameters["targetdir"].ToString().Replace(@"\\", @"\");
            //IIS地址
            iis = this.Context.Parameters["iis"].ToString();
            //ip
            string ip = this.Context.Parameters["ip"].ToString();
            //端口
            string port = this.Context.Parameters["port"].ToString();
            //网站名
            string isname = this.Context.Parameters["isname"].ToString();

            //File.WriteAllText(Path.Combine(targetdir, "log11.txt"), "databaseServer:" + databaseServer + "/n/r" + "user:" + user + "/n/r" + "pwd:" + pwd + "/n/r" + "targetdir:" + targetdir + "/n/r" + "iis:" + iis + "/n/r" + "port:" + port + "/n/r" + "isname" + isname + "/n/r" + "serverID:" + serverID);

            try
            {
                //实例化IIS站点配置信息
                NewWebSiteInfo nwsif = new NewWebSiteInfo(ip, port, isname.Trim(), (isname.Trim().Length > 0 ? isname : "SoReal"), targetdir + "\\web");
                //创建IIS站点
                CreateNewWebSite(nwsif);

                databaseServer = String.Format("server={0};database=monitorDB;uid={1};pwd={2}", databaseServer, user, pwd);

                //修改网站的配置文件
                SaveWeb(targetdir, databaseServer);
                //

                #region 附加数据库

                //给文件添加"Authenticated Users,Everyone,Users"用户组的完全控制权限 ,要附加的数据库文件必须加权限否则无法附加
                if (File.Exists(targetdir + "web\\App_Data\\monitorDB.mdf"))
                {
                    FileInfo fi = new FileInfo(targetdir + "web\\App_Data\\monitorDB.mdf");
                    System.Security.AccessControl.FileSecurity fileSecurity = fi.GetAccessControl();
                    fileSecurity.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity.AddAccessRule(new FileSystemAccessRule("Authenticated Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fi.SetAccessControl(fileSecurity);
                    FileInfo fi1 = new FileInfo(targetdir + "web\\App_Data\\monitorDB_log.ldf");
                    System.Security.AccessControl.FileSecurity fileSecurity1 = fi1.GetAccessControl();
                    fileSecurity1.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity1.AddAccessRule(new FileSystemAccessRule("Authenticated Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fileSecurity1.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));
                    fi1.SetAccessControl(fileSecurity1);
                }

                string connectionString = GetConnectionString(null).Replace(@"\\", @"\");

                //保存数据连接词,为卸载做准备
                File.WriteAllText(Path.Combine(targetdir + "web\\" + "App_Data\\", "log.txt"), connectionString);

                try
                {
                    using (SqlConnection connection = new SqlConnection(connectionString))
                    {
                        connection.Open();
                        //使用数据库文件创建数据库,所以添加的网站项目中需要有App_Data文件夹和数据库文件(monitorDB.mdf)和日志文件(monitorDB_log.ldf)
                        string sql = "sp_attach_db 'monitorDB','" + targetdir + "web\\App_Data\\monitorDB.mdf','" + targetdir + "web\\App_Data\\monitorDB_log.ldf'";


                        File.AppendAllText(Path.Combine(targetdir + "\\" + "web\\App_Data\\", "log.txt"), sql);
                        ExecuteSQL(connection, sql);
                        connection.Close();

                        //修改配置文件                      

                        SaveSocket(targetdir, databaseServer, ip, port);

                        SaveAudio(targetdir, databaseServer);

                        SaveRegist(targetdir, databaseServer);
                    }
                }
                catch (Exception ex)
                {
                    File.AppendAllText(Path.Combine(targetdir + "\\" + "web\\App_Data\\", "log.txt"), ex.ToString());
                    MessageBox.Show("安装出错了1!\n" + ex.ToString(), "出错啦!");
                }

                #endregion
            }
            catch (Exception ex)
            {
                File.AppendAllText(Path.Combine(targetdir + "\\" + "web\\App_Data\\", "log.txt"), ex.ToString());
                MessageBox.Show("安装出错了!2\n" + ex.ToString(), "出错啦!");
            }
        }

        /// <summary>
        /// 执行SQL语句
        /// </summary>
        /// <param name="connection"></param>
        /// <param name="sql"></param>
        void ExecuteSQL(SqlConnection connection, string sql)
        {
            SqlCommand cmd = new SqlCommand(sql, connection);
            cmd.ExecuteNonQuery();
        }

        /// <summary>
        /// 获取数据库登陆连接字符串
        /// </summary>
        /// <param name="databasename"></param>
        /// <returns></returns>
        private string GetConnectionString(string databasename)
        {
            return "server=" + Context.Parameters["server"].ToString() + ";database=" + (string.IsNullOrEmpty(databasename) ? "master" : databasename) + ";User ID=" + Context.Parameters["user"].ToString() + ";Password=" + Context.Parameters["pwd"].ToString();
        }

        /// <summary>
        /// 创建IIS站点
        /// </summary>
        /// <param name="siteInfo">新站点配置信息</param>
        public void CreateNewWebSite(NewWebSiteInfo siteInfo)
        {
            string entPath = String.Format("IIS://{0}/W3SVC", iis);

            //SetFileRole();

            if (!EnsureNewSiteEnavaible(siteInfo.BindString, entPath))
            {
                throw new Exception("该网站已存在" + Environment.NewLine + siteInfo.BindString);
            }

            DirectoryEntry rootEntry = new DirectoryEntry(entPath);
            //TODO GetNewWebSiteID(entPath)
            string newSiteNum = "3";// GetNewWebSiteID();

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

            newSiteEntry.Properties["ServerBindings"].Value = siteInfo.BindString;
            newSiteEntry.Properties["ServerComment"].Value = siteInfo.CommentOfWebSite;
            newSiteEntry.Properties["ServerAutoStart"].Value = true;//网站是否启动
            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["ServerAutoStart"].Value = 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] = "default.cshtml";//设置默认文档
            vdEntry.Properties["AppFriendlyName"][0] = "SoReal"; //应用程序名称           
            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://" + iis + "/W3SVC/INFO");
            int Version = int.Parse(getEntity.Properties["MajorIISVersionNumber"].Value.ToString());
            if (Version > 6)
            {
                #region 创建应用程序池
                string AppPoolName = "SoReal";
                if (!IsAppPoolName(AppPoolName))
                {
                    DirectoryEntry newpool;
                    DirectoryEntry appPools = new DirectoryEntry("IIS://" + iis + "/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);
            }

        }

        #region 判定网站是否存在

        /// <summary>
        /// 确定一个新的网站与现有的网站没有相同的。 
        /// 这样防止将非法的数据存放到IIS里面去 
        /// </summary>
        /// <param name="bindStr">网站邦定信息</param>
        /// <returns>真为可以创建,假为不可以创建</returns>
        public bool EnsureNewSiteEnavaible(string bindStr, string entPath)
        {
            DirectoryEntry ent = new DirectoryEntry(entPath);

            foreach (DirectoryEntry child in ent.Children)
            {
                if (child.SchemaClassName == "IIsWebServer" && child.Properties["ServerBindings"].Value != null && child.Properties["ServerBindings"].Value.ToString() == bindStr)
                {
                    return false;
                }
            }
            return true;
        }

        /// <summary>
        /// 设置文件夹权限 处理给EVERONE赋予所有权限
        /// </summary>
        /// <param name="FileAdd">文件夹路径</param>
        public void SetFileRole()
        {
            string FileAdd = this.Context.Parameters["targetdir"].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);
        }



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

        public string GetNewWebSiteID()
        {
            ArrayList list = new ArrayList();
            string tempStr;
            string entPath = string.Format("IIS://{0}/w3svc", iis);
            DirectoryEntry ent = GetDirectoryEntry(entPath);
            foreach (DirectoryEntry child in ent.Children)
            {
                if (child.SchemaClassName == "IIsWebServer")
                {
                    tempStr = child.Name.ToString();
                    list.Add(Convert.ToInt32(tempStr));
                }
            }
            list.Sort();
            var newId = Convert.ToInt32(list[list.Count - 1]) + 1;
            return newId.ToString();
        }

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


        #region
        /// <summary>
        /// 保存采集服务端配置文件
        /// </summary>
        /// <param name="targetdir"></param>
        /// <param name="databaseServer"></param>
        private void SaveWeb(string targetdir, string databaseServer)
        {
            string filename = "Web.config";
            try
            {
                filename = Path.Combine(targetdir + "\\web", filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);
                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }

        /// <summary>
        /// 保存采集服务端配置文件
        /// </summary>
        /// <param name="targetdir"></param>
        /// <param name="databaseServer"></param>
        /// <param name="ip"></param>
        /// <param name="port"></param>
        /// <param name="serverIP"></param>
        /// <param name="serverPort"></param>
        private void SaveSocket(string targetdir, string databaseServer, string ip, string port)
        {
            string filename = "winSocketServer.exe.config";
            try
            {
                filename = Path.Combine(targetdir, filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);
                config.SetValue("ip", ip);
                string url = string.Format("http://{0}:{1}/html/home.html", "localhost", port);
                config.SetValue("url", url);

                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }


        private void SaveAudio(string targetdir, string databaseServer)
        {
            string filename = "SoReal.Audio.Server.exe.config";
            try
            {
                filename = Path.Combine(targetdir, filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);

                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }

        private void SaveRegist(string targetdir, string databaseServer)
        {
            string filename = "register.exe.config";
            try
            {
                filename = Path.Combine(targetdir, filename);
                ConfigHelper config = new ConfigHelper(filename);
                config.Load();
                config.SetValue("SQLServer", databaseServer);

                config.Save();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                Console.WriteLine(ex.Message);
            }
        }
        #endregion 修改配置文件

    }
}

using System;
using System.Xml;

namespace ServerInstall
{
    public class ConfigHelper
    {
        private string filename;
        private XmlDocument xDoc = new XmlDocument();
        public ConfigHelper(string filename)
        {
            this.filename = filename;
        }

        public void Load()
        {
            xDoc.Load(filename);
        }

        public void SetValue(String AppKey, String AppValue)
        {
            XmlNode xNode;
            XmlElement xElem1;
            XmlElement xElem2;
            xNode = xDoc.SelectSingleNode("configuration").SelectSingleNode("appSettings");
            xElem1 = (XmlElement)xNode.SelectSingleNode("add[@key='" + AppKey + "']");
            if (xElem1 != null)
                xElem1.SetAttribute("value", AppValue);
            else
            {
                xElem2 = xDoc.CreateElement("add");
                xElem2.SetAttribute("key", AppKey);
                xElem2.SetAttribute("value", AppValue);
                xNode.AppendChild(xElem2);
            }
        }

        public void Save()
        {
            xDoc.Save(filename);
        }
    }
}

using System;
/// <summary>
/// IIS站点配置信息
/// </summary>
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"

    /// <summary>
    /// 实例化IIS站点配置
    /// </summary>
    /// <param name="hostIP">主机IP</param>
    /// <param name="portNum">网站端口号</param>
    /// <param name="descOfWebSite">网站表示。一般为网站的网站名。例如"www.dns.com.cn"--【主机名(域名)】</param>
    /// <param name="commentOfWebSite">网站注释。一般也为网站的网站名。--【iis网站站点名称】</param>
    /// <param name="webPath">网站的主目录。例如"e:\ mp"</param>
    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;
    }

    /// <summary>
    /// 网站标识
    /// </summary>
    public string BindString
    {
        get
        {
            return String.Format("{0}:{1}:{2}", "*", portNum, descOfWebSite); //网站标识(IP,端口,主机头值)
        }
    }
    /// <summary>
    /// 网站端口号
    /// </summary>
    public string PortNum
    {
        get
        {
            return portNum;
        }
    }
    /// <summary>
    /// 网站表示。一般为网站的网站名。例如"www.dns.com.cn"
    /// </summary>
    public string CommentOfWebSite
    {
        get
        {
            return commentOfWebSite;
        }
    }
    /// <summary>
    /// 网站的主目录。例如"e:\ mp"
    /// </summary>
    public string WebPath
    {
        get
        {
            return webPath;
        }
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值