一段创建IIS6网站、应用程序池、设置ASP.NET版本和应用程序名的(3)
if (Convert.ToInt32(Server.Name) > i)
i = Convert.ToInt32(Server.Name);
}
}
i++;
Server = Service.Children.Add(i.ToString(), "IIsWebServer");
Server.Properties["ServerBindings"].Value = ":8551:";
Server.Properties["ServerComment"][0] = "测试网站";
Server.CommitChanges();
DirectoryEntry root = Server.Children.Add("Root", "IIsWebVirtualDir");
root.Properties["Path"][0] = @"C:\b\xx";
root.Properties["AccessFlags"][0] = MD_ACCESS_READ | MD_ACCESS_SCRIPT;
root.Properties["ScriptMaps"].Value = ScriptMapsList;
root.Properties["AspEnableParentPaths"][0] = true;
root.Properties["AppRoot"][0] = "LM/W3SVC/" + i + "/Root";
root.Invoke("AppCreate", true);
root.CommitChanges();
//注意:AppFriendlyName必须放在root.Invoke("AppCreate", true);root.CommitChanges();之后。
root.Properties["AppFriendlyName"][0] = "我的测试网站";
root.CommitChanges();
object[] param = { 0, appPoolName, true };
root.Invoke("AppCreate3", param);
Server.Invoke("start", new object[0]);
Service.CommitChanges();
作者 孟宪会
相关新闻>>
- 发表评论
-
- 最新评论 更多>>