日期:2014-05-17 浏览次数:20872 次
string constIISWebSiteRoot = "IIS://localhost/W3SVC/14/ROOT";
DirectoryEntry root = new DirectoryEntry(constIISWebSiteRoot);
DirectoryEntry tbEntry = root.Children.Add(appName, "IIsWebVirtualDir");
tbEntry.Properties["Path"][0] = physicalPath; //虚拟目录物理路径
tbEntry.Invoke("AppCreate", true);//删除tbEntry.Invoke("AppDelete",true); tbEntry.CommitChanges();
tbEntry.Properties["AccessRead"][0] = true; //设置读取权限
tbEntry.Properties["ContentIndexed"][0] = true;
tbEntry.Properties["DefaultDoc"][0] = "index.aspx,Default.aspx"; //设置默认文档,多值情况下中间用逗号分割
tbEntry.Properties["AppFriendlyName"][0] = appName; //虚拟目录名称:Monitor
tbEntry.Properties["AccessScript"][0] = true; //执行权限[純腳本]
tbEntry.Properties["AppIsolated"][0] = "1";//属性指出应用程序是在进程内、进程外还是在进程池中运行。值 0 表示应用程序在进程内运行,值 1 表示进程外,值 2 表示进程池。
tbEntry.Properties["DontLog"][0] = true; // 是否记录日志
tbEntry.Properties["AuthFlags"][0] = 0;
tbEntry.CommitChanges();
tbEntry.Properties["protocol"][0] = "http,net.tcp";