基本信息
源码名称:IIS多站点管理系统源码(创建站点、停止站点删除站点、重启iis)
源码大小:2.98M
文件格式:.zip
开发语言:C#
更新时间:2019-11-20
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

该程序为了方便控制IIS管理器  制作

/// <summary>
    /// IIS管理员
    /// </summary>
public class IIsAdministrator : IDisposable
{
private bool _disposed;

private IIsWebSiteCollection _sites;

public IIsWebSiteCollection WebSites => _sites;

public event IIsWebSiteEventHandler WebSiteStarted;

public event IIsWebSiteEventHandler WebSiteStopped;

public IIsAdministrator()
{
RefreshWebSites();
}

public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}

private void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
_sites.Dispose();
}
_disposed = true;
}
}

public void RefreshWebSites()
{
_sites = GetWebSites();
_sites.WebSiteStarted = OnWebSiteStarted;
_sites.WebSiteStopped = OnWebSiteStopped;
}

protected virtual void OnWebSiteStarted(object sender, IIsWebSiteEventArgs e)
{
if (this.WebSiteStarted != null)
{
this.WebSiteStarted(sender, e);
}
}

protected virtual void OnWebSiteStopped(object sender, IIsWebSiteEventArgs e)
{
if (this.WebSiteStopped != null)
{
this.WebSiteStopped(sender, e);
}
}

public static IIsWebSiteCollection GetWebSites()
{
using (DirectoryEntry directoryEntry = new DirectoryEntry("IIS://localhost/W3SVC"))
{
IIsWebSiteCollection isWebSiteCollection = new IIsWebSiteCollection();
foreach (DirectoryEntry child in directoryEntry.Children)
{
if (IsWebServerSchema(child))
{
IIsWebSite site = IIsWebSite.FromDirectoryEntry(child);
isWebSiteCollection.Add(site);
}
}
return isWebSiteCollection;
}
}

private static bool IsWebServerSchema(DirectoryEntry entry)
{
return string.Compare(entry.SchemaClassName, "IIsWebServer", true) == 0;
}

public static IIsWebSite CreateWebSite(string name, string homeDirectory, int port)
{
if (name == null || name.Length == 0)
{
throw new ArgumentException("你必须指定一个站点名称");
}
if (homeDirectory == null || homeDirectory.Length == 0)
{
throw new ArgumentException("你必须给这个站点指定一个主目录");
}
if (port < 0)
{
throw new ArgumentException("你必须给这个站点指定一个大于 0 的端口");
}
DirectoryEntry directoryEntry = new DirectoryEntry("IIS://localhost/W3SVC");
int num = 1;
foreach (DirectoryEntry child in directoryEntry.Children)
{
if (child.SchemaClassName == "IIsWebServer")
{
int num2 = Convert.ToInt32(child.Name);
if (num2 > num)
{
num = num2;
}
}
}
num ;
DirectoryEntry directoryEntry3 = (DirectoryEntry)directoryEntry.Invoke("Create", "IIsWebServer", num);
directoryEntry3.Invoke("Put", "ServerComment", name);
directoryEntry3.Invoke("Put", "KeyType", "IIsWebServer");
directoryEntry3.Invoke("Put", "ServerBindings", ":" port.ToString() ":");
directoryEntry3.Invoke("Put", "ServerState", 1);
directoryEntry3.Invoke("Put", "FrontPageWeb", 1);
directoryEntry3.Invoke("Put", "DefaultDoc", "default.aspx");
directoryEntry3.Invoke("Put", "SecureBindings", ":443:");
directoryEntry3.Invoke("Put", "ServerAutoStart", 0);
directoryEntry3.Invoke("Put", "ServerSize", 1);
directoryEntry3.Invoke("SetInfo");
DirectoryEntry directoryEntry4 = directoryEntry3.Children.Add("Root", "IIsWebVirtualDir");
directoryEntry4.Properties["AppIsolated"][0] = 2;
directoryEntry4.Properties["Path"][0] = homeDirectory;
directoryEntry4.Properties["AccessFlags"][0] = 513;
directoryEntry4.Properties["FrontPageWeb"][0] = 1;
directoryEntry4.Properties["AppRoot"][0] = "/LM/W3SVC/" num "/Root";
directoryEntry4.Properties["AppFriendlyName"][0] = "默认应用程序";
directoryEntry4.CommitChanges();
directoryEntry3.CommitChanges();
DirectoryEntry entry = new DirectoryEntry("IIS://localhost/W3SVC/" num);
IIsWebSite isWebSite = IIsWebSite.FromDirectoryEntry(entry);
IIsWebSite activeWebSite = GetWebSites().ActiveWebSite;
if (activeWebSite != null)
{
activeWebSite.Stop();
isWebSite.Start();
isWebSite.Stop();
activeWebSite.Start();
}
else
{
isWebSite.Start();
isWebSite.Stop();
}
return isWebSite;
}

public static void RestartIIs()
{
try
{
string folderPath = Environment.GetFolderPath(Environment.SpecialFolder.System);
string fileName = Path.Combine(folderPath, "iisreset.exe");
Process process = Process.Start(fileName);
process.WaitForExit();
}
catch (Exception ex)
{
ExceptionUtilities.DisplayException(ex);
}
}

public static void OpenIIsManagementConsole()
{
try
{
string folderPath = Environment.GetFolderPath(Environment.SpecialFolder.System);
string fileName = Path.Combine(folderPath, "inetsrv\\iis.msc");
Process.Start(fileName);
}
catch (Exception ex)
{
ExceptionUtilities.DisplayException(ex);
}
}