示例#1
0
        private void btnAddPool_Click(object sender, EventArgs e)
        {
            IISConfig.Metabase metabase = new IISConfig.Metabase();
            metabase.OpenLocalMachine();

            IISConfig.Record record = new IISConfig.Record();
            record.DataType   = IISConfig.Record.DataTypes.String;
            record.UserType   = IISConfig.Record.UserTypes.Server;
            record.Identifier = 1002;

            StringBuilder sb = new StringBuilder();

            foreach (var item in txtNewPool.Text.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries))
            {
                try
                {
                    IISConfig.IKey key = metabase.GetKeyFromPath("/LM/W3SVC/AppPools").AddSubkey(item);
                    record.Data = "IIsApplicationPool";
                    key.SetRecord(record);
                }
                catch (Exception ex)
                {
                    sb.AppendFormat("{0}\r\n", ex.Message);
                }
            }

            metabase.Close();
            Fill();
        }
示例#2
0
        void SetMimeTypeProperty(string metabasePath, string newExtension, string newMimeType, bool isReset)
        {
            IISConfig.Metabase metabase = new IISConfig.Metabase();
            metabase.OpenLocalMachine();

            IISConfig.IKey   key    = metabase.GetKeyFromPath("LM/MimeMap");
            IISConfig.Record record = key.GetRecord(6015);

            List <String> list = new List <string>();

            foreach (var item in record.Data as string[])
            {
                if (!item.StartsWith(newExtension + ","))
                {
                    list.Add(item);
                }
            }
            if (isReset)
            {
                list.Add(newExtension + "," + newMimeType);
            }
            record.Data = list.ToArray();
            key.SetRecord(record);
            metabase.Close();
        }
示例#3
0
        void SetLog(string opt, string tip)
        {
            if (MessageBox.Show(tip, "IIS日志记录模式 将设置到", MessageBoxButtons.OKCancel) != DialogResult.OK)
            {
                return;
            }
            if (opt == "Default")
            {
                DirectoryEntry dir = new DirectoryEntry("IIS://localhost/w3svc");
                dir.Properties["LogExtFileFlags"].Value          = 2199519;
                dir.Properties["LogFileLocaltimeRollover"].Value = false;
                dir.Properties["LogFilePeriod"].Value            = 1;
                dir.Properties["LogInUTF8"].Value      = false;
                dir.Properties["LogPluginClsid"].Value = "{FF160663-DE82-11CF-BC0A-00AA006111E0}";
                dir.Properties["LogType"].Value        = 1;
                dir.CommitChanges();
            }
            else if (opt == "CrazyIIS")
            {
                DirectoryEntry dir = new DirectoryEntry("IIS://localhost/w3svc");
                dir.Properties["LogExtFileFlags"].Value          = 3178375; //2129799
                dir.Properties["LogFileLocaltimeRollover"].Value = true;
                dir.Properties["LogFilePeriod"].Value            = 1;
                dir.Properties["LogInUTF8"].Value      = false;
                dir.Properties["LogPluginClsid"].Value = "{FF160663-DE82-11CF-BC0A-00AA006111E0}";
                dir.Properties["LogType"].Value        = 1;
                dir.CommitChanges();
            }
            else if (opt == "All")
            {
                DirectoryEntry dir = new DirectoryEntry("IIS://localhost/w3svc");

                dir.Properties["LogExtFileFlags"].Value          = 4194303;
                dir.Properties["LogFileLocaltimeRollover"].Value = true;
                dir.Properties["LogFilePeriod"].Value            = 1;
                dir.Properties["LogInUTF8"].Value      = false;
                dir.Properties["LogPluginClsid"].Value = "{FF160663-DE82-11CF-BC0A-00AA006111E0}";
                dir.Properties["LogType"].Value        = 1;
                dir.CommitChanges();
            }
            if (MessageBox.Show("让所有站点日志记录方式继承此模式", "IIS日志记录模式", MessageBoxButtons.YesNo) == DialogResult.Yes)
            {
                IISConfig.Metabase metabase = new IISConfig.Metabase();
                metabase.OpenLocalMachine();

                string          MetaBase = File.ReadAllText(Comm.MetaBasePath());
                MatchCollection matchs   = Regex.Matches(MetaBase, @"Location\s*=\s*""(/LM/W3SVC/\d+)""", RegexOptions.IgnoreCase);
                foreach (Match item in matchs)
                {
                    IISConfig.IKey key = metabase.GetKeyFromPath(item.Groups[1].Value);
                    if (key.GetRecord(4013) != null)
                    {
                        key.DeleteRecord(4013);
                    }
                }
            }
            MessageBox.Show("OK,设置完成,明天及以后可以使用此功能");
        }
示例#4
0
        private void btnOneWebOnePool_Click(object sender, EventArgs e)
        {
            if (localWeb1.dgvWeb.SelectedRows.Count == 0)
            {
                MessageBox.Show("没选择网站");
                return;
            }

            IISConfig.Metabase metabase = new IISConfig.Metabase();
            metabase.OpenLocalMachine();

            #region 先建应用程序池
            {
                IISConfig.Record pool = new IISConfig.Record();
                pool.DataType   = IISConfig.Record.DataTypes.String;
                pool.UserType   = IISConfig.Record.UserTypes.Server;
                pool.Identifier = 1002;
                foreach (DataGridViewRow item in localWeb1.dgvWeb.SelectedRows)
                {
                    try
                    {
                        IISConfig.IKey key = metabase.GetKeyFromPath("/LM/W3SVC/AppPools").AddSubkey(item.Cells["Web"].Value.ToString());
                        pool.Data = "IIsApplicationPool";
                        key.SetRecord(pool);
                    }
                    catch
                    {
                    }
                }
            }
            #endregion

            IISConfig.Record record = new IISConfig.Record();
            record.DataType   = IISConfig.Record.DataTypes.String;
            record.UserType   = IISConfig.Record.UserTypes.Server;
            record.Identifier = 9101;

            record.ChangeAttribute(IISConfig.Record.AttributeList.Inherit, true);

            foreach (DataGridViewRow item in localWeb1.dgvWeb.SelectedRows)
            {
                record.Data = item.Cells["Web"].Value;
                metabase.GetKeyFromPath("/LM/W3SVC/" + item.Cells["Id"].Value + "/root").SetRecord(record);
            }
            metabase.Close();
            Fill();
            localWeb1.FillWeb();
            Changed = true;
        }
示例#5
0
        public static List <string> GetAppPools()
        {
            List <string> list = new List <string>();

            IISConfig.Metabase metabase = new IISConfig.Metabase();
            metabase.OpenLocalMachine();

            IISConfig.IKey key = metabase.GetKeyFromPath("/LM/W3SVC/AppPools");
            foreach (var item in key.Subkeys)
            {
                list.Add(item.Name);
            }
            metabase.Close();
            return(list);
        }
示例#6
0
        private void backgroundWorker2_DoWork(object sender, DoWorkEventArgs e)
        {
            Stopwatch sp = new Stopwatch();

            sp.Start();
            WinNT.NetUser User = new WinNT.NetUser();
            Dictionary <string, string> AllUsers = new Dictionary <string, string>();

            string MetaBase = File.ReadAllText(Comm.MetaBasePath());

            #region 取得所有匿名用户并重新给他们密码
            {
                MatchCollection _AnonymousUserName = Regex.Matches(MetaBase, @"AnonymousUserName=""(.+?)""");
                for (int i = 0; i < _AnonymousUserName.Count; i++)
                {
                    Match item = _AnonymousUserName[i];
                    if (!AllUsers.ContainsKey(item.Groups[1].Value))
                    {
                        AllUsers.Add(item.Groups[1].Value, Comm.Random(i, 10));
                    }
                }
            }
            #endregion

            #region 改用户密码
            foreach (var item in AllUsers)
            {
                backgroundWorker2.ReportProgress(50, "正在修改用户" + item.Key + "的密码" + sp.ElapsedMilliseconds.ToString());

                User.UserChangePassword(item.Key, item.Value);
            }
            #endregion

            #region 更新网站的匿名用户密码
            {
                backgroundWorker2.ReportProgress(50, "将要 给网站添加匿名用户" + sp.ElapsedMilliseconds.ToString());

                IISConfig.Metabase metabase = new IISConfig.Metabase();
                metabase.OpenLocalMachine();

                IISConfig.IKey   key    = metabase.GetKeyFromPath("/LM/W3SVC");
                IISConfig.Record record = key.GetRecord(6021);

                //更新"/LM/W3SVC"的默认用户密码
                record.Data = AllUsers[key.GetRecord(6020).Data.ToString()];
                key.SetRecord(record);



                MatchCollection matchs = Regex.Matches(MetaBase, @"Location\s*=\s*""(/LM/W3SVC/\d+/root)""", RegexOptions.IgnoreCase);
                foreach (Match item in matchs)
                {
                    key = metabase.GetKeyFromPath(item.Groups[1].Value);
                    if (key.GetRecord(6020) != null)
                    {
                        //用户名存在时,设置密码
                        record.Data = AllUsers[key.GetRecord(6020).Data.ToString()];
                        key.SetRecord(record);
                    }
                    else
                    {
                        //用户名不存在时,删除密码
                        if (key.GetRecord(6021) != null)
                        {
                            key.DeleteRecord(6021);
                        }
                    }
                }



                backgroundWorker2.ReportProgress(50, "给网站添加匿名用户完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            sp.Stop();
            backgroundWorker2.ReportProgress(100, "操作完成 共用时:" + sp.ElapsedMilliseconds / 1000 + "s");
        }
示例#7
0
        private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
        {
            Stopwatch sp = new Stopwatch();

            sp.Start();

            //路径,用户名,密码
            WinNT.NetUser User   = new WinNT.NetUser();
            DataTable     dtUser = Comm.GetAllWebInfo();

            dtUser.Columns["AppPoolId"].ColumnName      = "U";
            dtUser.Columns["ServerBindings"].ColumnName = "P";
            Dictionary <string, string> AllUsers = new Dictionary <string, string>();

            for (int i = 0; i < dtUser.Rows.Count; i++)
            {
                string AnonymousUserName = txtUserNamePre.Text.Trim() + Regex.Replace(dtUser.Rows[i]["Web"].ToString(), @"\.|-", "_");
                string AnonymousUserPass = "";
                if (AnonymousUserName.Length > 20)
                {
                    AnonymousUserName = AnonymousUserName.Substring(0, 20);
                }
                if (AllUsers.ContainsKey(AnonymousUserName))
                {
                    AnonymousUserPass = AllUsers[AnonymousUserName];
                }
                else
                {
                    AnonymousUserPass = Comm.Random(Convert.ToInt32(txtPasswordNumber.Value));
                    AllUsers.Add(AnonymousUserName, AnonymousUserPass);
                }
                dtUser.Rows[i]["U"] = AnonymousUserName;
                dtUser.Rows[i]["P"] = AnonymousUserPass;
            }

            #region  除所有要删除的用户
            {
                backgroundWorker1.ReportProgress(25, "将要删除用户" + sp.ElapsedMilliseconds.ToString());
                List <String> _NowUsers = WinNT.User.List();
                foreach (string item in AllUsers.Keys)
                {
                    if (_NowUsers.Contains(item))
                    {
                        backgroundWorker1.ReportProgress(25, "正在删除用户:" + item);
                        User.UserDelete(item);
                    }
                }
                _NowUsers = null;
                backgroundWorker1.ReportProgress(28, "删除用户完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            #region 创建所有要创建的用户
            {
                backgroundWorker1.ReportProgress(25, "将要创建用户" + sp.ElapsedMilliseconds.ToString());
                foreach (KeyValuePair <string, string> item in AllUsers)
                {
                    backgroundWorker1.ReportProgress(50, "正在创建匿名用户:" + item.Key);
                    User.UserAdd(item.Key, item.Value, null);
                }

                backgroundWorker1.ReportProgress(50, "创建匿名用户OK" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            #region 匿名用户给网站
            {
                backgroundWorker1.ReportProgress(50, "将要 给网站添加匿名用户" + sp.ElapsedMilliseconds.ToString());

                IISConfig.Metabase metabase = new IISConfig.Metabase();
                metabase.OpenLocalMachine();

                IISConfig.IKey key = metabase.GetKeyFromPath("/LM/W3SVC");

                IISConfig.Record recordU = key.GetRecord(6020);
                IISConfig.Record recordP = key.GetRecord(6021);


                for (int i = 0; i < dtUser.Rows.Count; i++)
                {
                    key = metabase.GetKeyFromPath("/LM/W3SVC/" + dtUser.Rows[i]["Id"].ToString() + "/root");
                    //用户名存在时,设置密码
                    recordU.Data = dtUser.Rows[i]["U"].ToString();
                    recordP.Data = dtUser.Rows[i]["P"].ToString();
                    key.SetRecord(recordU);
                    key.SetRecord(recordP);
                }

                backgroundWorker1.ReportProgress(50, "给网站添加匿名用户完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            #region 取网站路径及对应的用户名,如果路径存在,则加权限
            {
                backgroundWorker1.ReportProgress(50, "将要给目录加权限" + sp.ElapsedMilliseconds.ToString());

                for (int i = 0; i < dtUser.Rows.Count; i++)
                {
                    string NowPath = dtUser.Rows[i]["Path"].ToString();
                    if (Directory.Exists(NowPath))
                    {
                        backgroundWorker1.ReportProgress(50, "正在给目录 “" + NowPath + "” 加权限" + sp.ElapsedMilliseconds.ToString());
                        NTFS.ACL.Add(NowPath, dtUser.Rows[i]["U"].ToString(), NTFS.ACL.Roles.FullControl);
                        NTFS.ACL.DelErr(NowPath);
                    }
                }
                backgroundWorker1.ReportProgress(50, "给目录加权限完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            sp.Stop();
            backgroundWorker1.ReportProgress(100, "操作完成 共用时:" + sp.ElapsedMilliseconds / 1000 + "s");
        }
示例#8
0
        private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
        {
            if (!File.Exists(Comm.MetaBasePath()))
            {
                MessageBox.Show("请确认您已经安装IIS 6.0");
                return;
            }

            Stopwatch sp = new Stopwatch();

            sp.Start();

            backgroundWorker1.ReportProgress(5, "正在停止IIS");
            IIS.Stop();


            string MetaBase                 = File.ReadAllText(Comm.MetaBasePath());
            string MetaBase_BackUp          = File.ReadAllText(txtRestore.Text);
            string Defult_AnonymousUserName = Comm.GetDefaultAnonymousUserName();


            WinNT.NetUser User = new WinNT.NetUser();
            Dictionary <string, string> AllUsers = new Dictionary <string, string>();
            DataTable PathUser = new DataTable();

            PathUser.Columns.Add("Path");
            PathUser.Columns.Add("User");


            #region MetaBase_BackUp 前期处理
            {
                //把“机器名\\用户名”处理成“用户名”
                MetaBase_BackUp = Regex.Replace(MetaBase_BackUp, @"AnonymousUserName=""[^""]+\\([^""]+?)""", @"AnonymousUserName=""$1""");
                //有些机器会生成“UNCPassword”自定义结点,影响工作,删除
                MetaBase_BackUp = Regex.Replace(MetaBase_BackUp, @"<Custom[^<>]+?UNCPassword[\s\S]+?/>", "", RegexOptions.Multiline | RegexOptions.IgnoreCase);
                MetaBase_BackUp = Regex.Replace(MetaBase_BackUp, @"[a-zA-Z]:\\Windows", Environment.GetEnvironmentVariable("windir"), RegexOptions.IgnoreCase);
            }
            #endregion

            #region 加工 MetaBase_BackUp 一些安全属性为当前属性
            {
                XmlDocument doc_Now = new XmlDocument();
                doc_Now.LoadXml(MetaBase);
                XmlNamespaceManager xnm = new XmlNamespaceManager(doc_Now.NameTable);
                xnm.AddNamespace("mxh", "urn:microsoft-catalog:XML_Metabase_V64_0");

                XmlDocument doc_Bak = new XmlDocument();
                doc_Bak.LoadXml(MetaBase_BackUp);

                //string[] Nodes = "IIsWebService|IIsFilters|IIsApplicationPools|IIsLogModules|IIsFtpService|IIsNNTPService|IIsSMTPService|IIsIMAPService|IIsPOP3Service|IIsMiMeMap".Split('|');
                string[] IIS_Nodes  = "IIsWebService|IIsFilters|IIsApplicationPools|IIsLogModules|IIsFtpService".Split('|');
                string[] IIS_Fileds = "AnonymousUserName|AnonymousUserPass|LogOdbcPassword|LogOdbcPassword|WAMUserName|WAMUserPass|AdminACL".Split('|');

                foreach (string item in IIS_Nodes)
                {
                    string  xpath   = "/mxh:configuration/mxh:MBProperty/mxh:" + item;
                    XmlNode IIS_Now = doc_Now.SelectSingleNode(xpath, xnm);
                    XmlNode IIS_Bak = doc_Bak.SelectSingleNode(xpath, xnm);

                    //如果一个没有这个结点就直接进入下一个结点
                    if (IIS_Now == null || IIS_Bak == null)
                    {
                        continue;
                    }

                    //各属性同步
                    foreach (string item2 in IIS_Fileds)
                    {
                        if (IIS_Now.Attributes[item2] != null && IIS_Bak.Attributes[item2] == null)
                        {
                            ((XmlElement)IIS_Bak).RemoveAttribute(item2);
                        }

                        if (IIS_Now.Attributes[item2] != null && IIS_Bak.Attributes[item2] != null)
                        {
                            IIS_Bak.Attributes[item2].Value = IIS_Now.Attributes[item2].Value;
                        }
                    }
                }

                MetaBase_BackUp = doc_Bak.OuterXml;
            }
            #endregion

            #region IIsMimeMap
            {
                backgroundWorker1.ReportProgress(10, "还原网站配置");
                string temp = Regex.Match(MetaBase_BackUp, "<IIsMimeMap[^<>]+?>").Groups[0].Value;
                MetaBase = Regex.Replace(MetaBase, "<IIsMimeMap[^<>]+?>", temp);
            }
            #endregion

            #region IIsWebService
            {
                backgroundWorker1.ReportProgress(10, "还原网站配置");
                string temp = Regex.Match(MetaBase_BackUp, "<IIsWebService[^<>]+?>").Groups[0].Value;
                MetaBase = Regex.Replace(MetaBase, "<IIsWebService[^<>]+?>", temp);
            }
            #endregion

            #region IIsWebServer
            {
                backgroundWorker1.ReportProgress(15, "还原网站" + sp.ElapsedMilliseconds.ToString());

                string temp = "";
                if (Comm.IsReg())
                {
                    temp = Regex.Match(MetaBase_BackUp, "</IIsWebService>([\\s\\S]+)<IIsApplicationPools").Groups[1].Value;
                }
                else
                {
                    ////////////MatchCollection WebsitesMatches = Regex.Matches(MetaBase_BackUp, "<IIsWebServer\\s+Location=\"/LM/W3SVC/\\d+\"[\\s\\S]+?</IIsWebVirtualDir>",RegexOptions.IgnoreCase);
                    ////////////int TestI = 0;
                    ////////////foreach (Match item in WebsitesMatches)
                    ////////////{
                    ////////////    temp += item.Value;
                    ////////////    TestI++;
                    ////////////    if (TestI == 25)
                    ////////////    {
                    ////////////        break;
                    ////////////    }
                    ////////////}

                    List <string>   sss             = new List <string>();
                    MatchCollection WebsitesMatches = Regex.Matches(MetaBase_BackUp, "(<IIsWebServer\\s+Location=\"/LM/W3SVC/\\d+\"[\\s\\S]+)<IIsApplicationPools", RegexOptions.IgnoreCase);

                    if (WebsitesMatches.Count > 0)
                    {
                        sss.AddRange(WebsitesMatches[0].Groups[1].Value.Replace("<IIsWebServer", "柳永法<IIsWebServer").Split(new string[] { "柳永法" }, StringSplitOptions.RemoveEmptyEntries));
                    }

                    int TestI = 0;
                    foreach (string item in sss)
                    {
                        temp += item;
                        TestI++;
                        if (TestI == 25)
                        {
                            break;
                        }
                    }
                }

                temp     = Regex.Replace(temp, @"(AnonymousUserPass|UNCPassword|AdminACL)\s*=\s*"".+?""", "");
                MetaBase = Regex.Replace(MetaBase, "</IIsWebService>[\\s\\S]+<IIsApplicationPools", "</IIsWebService>" + temp + "<IIsApplicationPools");
            }
            #endregion

            #region IIsApplicationPools
            {
                backgroundWorker1.ReportProgress(20, "还原应用程序池配置" + sp.ElapsedMilliseconds.ToString());
                //"<IIsApplicationPools[\\s\\S]+</IIsApplicationPools>"
                string temp = Regex.Match(MetaBase_BackUp, "<IIsApplicationPools[^<>]+?>").Groups[0].Value;
                //可能会有,所有替换
                temp     = Regex.Replace(temp, @"(WAMUserName|WAMUserPass)\s*=\s*"".+?""", "");
                MetaBase = Regex.Replace(MetaBase, "<IIsApplicationPools[^<>]+?>", temp);
            }
            #endregion

            #region ApplicationPool
            {
                backgroundWorker1.ReportProgress(25, "还原应用程序池" + sp.ElapsedMilliseconds.ToString());
                string temp = Regex.Match(MetaBase_BackUp, "</IIsApplicationPools>([\\s\\S]+)</IIsApplicationPool>").Groups[1].Value;
                temp     = Regex.Replace(temp, @"(WAMUserName|WAMUserPass)\s*=\s*"".+?""", "");
                MetaBase = Regex.Replace(MetaBase, "</IIsApplicationPools>[\\s\\S]+</IIsApplicationPool>", "</IIsApplicationPools>" + temp + "</IIsApplicationPool>");
            }
            #endregion


            #region IIsLogModules
            {
                backgroundWorker1.ReportProgress(15, "还原LogModules" + sp.ElapsedMilliseconds.ToString());
                string temp = "";
                temp     = Regex.Match(MetaBase_BackUp, "<IIsLogModules>([\\s\\S]+)</IIsCustomLogModule>").Groups[1].Value;
                MetaBase = Regex.Replace(MetaBase, "<IIsLogModules>([\\s\\S]+)</IIsCustomLogModule>", temp);
            }
            #endregion

            #region IIsFilters
            {
                backgroundWorker1.ReportProgress(15, "还原LogModules" + sp.ElapsedMilliseconds.ToString());
                string temp = "";
                temp     = Regex.Match(MetaBase_BackUp, "<IIsFilters>([\\s\\S]+)</IIsCompressionSchemes>").Groups[1].Value;
                MetaBase = Regex.Replace(MetaBase, "<IIsFilters>([\\s\\S]+)</IIsCompressionSchemes>", temp);
            }
            #endregion

            if (chkFtp.Checked && MetaBase.Contains("<IIsFtpService"))
            {
                #region IIsFtpService
                {
                    backgroundWorker1.ReportProgress(10, "还原网站配置");
                    string temp = Regex.Match(MetaBase_BackUp, "<IIsFtpService[^<>]+?>").Groups[0].Value;
                    MetaBase = Regex.Replace(MetaBase, "<IIsFtpService[^<>]+?>", temp);
                }
                #endregion

                #region IIsFtpService
                {
                    backgroundWorker1.ReportProgress(15, "还原网站" + sp.ElapsedMilliseconds.ToString());
                    string temp = "";
                    temp     = Regex.Match(MetaBase_BackUp, "</IIsFtpService>([\\s\\S]+)<IIsFtpInfo").Groups[1].Value;
                    temp     = Regex.Replace(temp, @"(AnonymousUserPass|UNCPassword|AdminACL)\s*=\s*"".+?""", "");
                    MetaBase = Regex.Replace(MetaBase, "</IIsFtpService>([\\s\\S]+)<IIsFtpInfo", "</IIsFtpService>" + temp + "<IIsFtpInfo");
                }
                #endregion
            }



            File.WriteAllText(Comm.MetaBasePath(), MetaBase);

            backgroundWorker1.ReportProgress(25, "IIS还原完成,将要创建匿名用户,时间较长" + sp.ElapsedMilliseconds.ToString());

            #region 取得所有匿名用户并重新给他们密码
            {
                MatchCollection _AnonymousUserName = Regex.Matches(MetaBase, @"AnonymousUserName=""(.+?)""");
                for (int i = 0; i < _AnonymousUserName.Count; i++)
                {
                    Match item = _AnonymousUserName[i];
                    if (!AllUsers.ContainsKey(item.Groups[1].Value))
                    {
                        AllUsers.Add(item.Groups[1].Value, Comm.Random(i, 10));
                    }
                }
            }
            #endregion

            #region  除所有要删除的用户
            {
                backgroundWorker1.ReportProgress(25, "将要删除用户" + sp.ElapsedMilliseconds.ToString());
                List <String> _NowUsers = WinNT.User.List();
                foreach (string item in AllUsers.Keys)
                {
                    if (_NowUsers.Contains(item))
                    {
                        backgroundWorker1.ReportProgress(25, "正在删除用户:" + item);
                        User.UserDelete(item);
                    }
                }
                _NowUsers = null;
                backgroundWorker1.ReportProgress(28, "删除用户完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            #region 创建所有要创建的用户
            {
                backgroundWorker1.ReportProgress(25, "将要创建用户" + sp.ElapsedMilliseconds.ToString());
                foreach (KeyValuePair <string, string> item in AllUsers)
                {
                    backgroundWorker1.ReportProgress(50, "正在创建匿名用户:" + item.Key);
                    User.UserAdd(item.Key, item.Value, null);
                }

                backgroundWorker1.ReportProgress(50, "创建匿名用户OK" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            #region 匿名用户给网站
            {
                backgroundWorker1.ReportProgress(50, "将要 给网站添加匿名用户" + sp.ElapsedMilliseconds.ToString());

                IISConfig.Metabase metabase = new IISConfig.Metabase();
                metabase.OpenLocalMachine();

                IISConfig.IKey   key    = metabase.GetKeyFromPath("/LM/W3SVC");
                IISConfig.Record record = key.GetRecord(6021);

                //更新"/LM/W3SVC"的默认用户密码
                record.Data = AllUsers[key.GetRecord(6020).Data.ToString()];
                key.SetRecord(record);



                MatchCollection matchs = Regex.Matches(MetaBase, @"Location\s*=\s*""(/LM/W3SVC/\d+/root.*?)""", RegexOptions.IgnoreCase);
                foreach (Match item in matchs)
                {
                    key = metabase.GetKeyFromPath(item.Groups[1].Value);
                    if (key.GetRecord(6020) != null)
                    {
                        //用户名存在时,设置密码
                        record.Data = AllUsers[key.GetRecord(6020).Data.ToString()];
                        key.SetRecord(record);
                        PathUser.Rows.Add(key.GetRecord(3001).Data.ToString(), key.GetRecord(6020).Data.ToString());
                    }
                    else
                    {
                        //用户名不存在时,删除密码
                        if (key.GetRecord(6021) != null)
                        {
                            key.DeleteRecord(6021);
                        }

                        PathUser.Rows.Add(key.GetRecord(3001).Data.ToString(), Defult_AnonymousUserName);
                    }
                }
                metabase.Close();
                backgroundWorker1.ReportProgress(50, "给网站添加匿名用户完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion

            #region 取网站路径及对应的用户名,如果路径存在,则加权限
            {
                backgroundWorker1.ReportProgress(50, "将要给目录加权限" + sp.ElapsedMilliseconds.ToString());

                for (int i = 0; i < PathUser.Rows.Count; i++)
                {
                    string NowPath = PathUser.Rows[i][0].ToString();
                    if (chkDir.Checked && !Directory.Exists(NowPath))
                    {
                        Directory.CreateDirectory(NowPath);
                        File.WriteAllText(NowPath + "\\CrazyIIS.html", "hello html");
                        File.WriteAllText(NowPath + "\\CrazyIIS.asp", "<%=1+1%> ASP Test OK");
                        File.WriteAllText(NowPath + "\\CrazyIIS.aspx", "<%=1+1%> ASPX Test OK");
                    }

                    if (Directory.Exists(NowPath))
                    {
                        backgroundWorker1.ReportProgress(50, "正在给目录 “" + NowPath + "” 加权限" + sp.ElapsedMilliseconds.ToString());
                        NTFS.ACL.Add(NowPath, PathUser.Rows[i][1].ToString(), NTFS.ACL.Roles.FullControl);
                        NTFS.ACL.DelErr(NowPath);
                    }
                }
                backgroundWorker1.ReportProgress(50, "给目录加权限完成" + sp.ElapsedMilliseconds.ToString());
            }
            #endregion


            #region 是否写入 hosts
            if (chkHosts.Checked)
            {
                backgroundWorker1.ReportProgress(90, "正在写入hosts" + sp.ElapsedMilliseconds.ToString());
                MatchCollection matchs = Regex.Matches(MetaBase, "ServerComment=\"(.+?)\"", RegexOptions.IgnoreCase);
                string          Hosts  = "";
                foreach (Match item in matchs)
                {
                    Hosts += ",127.0.0.1," + item.Groups[1].Value;
                }
                Comm.Write2hosts(Hosts.Substring(1).Split(','), true);
            }
            #endregion


            backgroundWorker1.ReportProgress(90, "正在重启IIS" + sp.ElapsedMilliseconds.ToString());

            IIS.Start();

            sp.Stop();
            backgroundWorker1.ReportProgress(100, "操作完成 共用时:" + sp.ElapsedMilliseconds / 1000 + "s");
        }