【问题标题】:How can I delete IIS objects from c#?如何从 c# 中删除 IIS 对象?
【发布时间】:2009-03-20 17:51:15
【问题描述】:

作为卸载方法的一部分,我需要从 .NET 中删除虚拟目录和应用程序池。我在网上某处找到了以下代码:

    private static void DeleteTree(string metabasePath)
    {
        // metabasePath is of the form "IIS://<servername>/<path>"
        // for example "IIS://localhost/W3SVC/1/Root/MyVDir" 
        // or "IIS://localhost/W3SVC/AppPools/MyAppPool"
        Console.WriteLine("Deleting {0}:", metabasePath);

        try
        {
            DirectoryEntry tree = new DirectoryEntry(metabasePath);
            tree.DeleteTree();
            tree.CommitChanges();
            Console.WriteLine("Done.");
        }
        catch (DirectoryNotFoundException)
        {
            Console.WriteLine("Not found.");
        }
    }

但它似乎在tree.CommitChanges(); 上抛出了COMException。我需要这条线吗?这是一个正确的方法吗?

【问题讨论】:

  • 你能粘贴完整的 COMException 吗?
  • 您确实应该使用 Windows 安装程序来执行这些操作。 Wix 内置了自动创建和删除 IIS 对象的功能。
  • @Jesse - 使用 Wix 是否可以提示用户输入新的应用程序池/网站/vdir 而不是选择现有的(VS Web 设置项目只允许您选择现有的 IIS 对象)?

标签: c# .net iis installation wmi


【解决方案1】:

如果您要删除应用程序池、虚拟目录或 IIS 应用程序等对象,您需要这样做:

string appPoolPath = "IIS://Localhost/W3SVC/AppPools/MyAppPool";
using(DirectoryEntry appPool = new DirectoryEntry(appPoolPath))
{
    using(DirectoryEntry appPools = 
               new DirectoryEntry(@"IIS://Localhost/W3SVC/AppPools"))
    {
        appPools.Children.Remove(appPool);
        appPools.CommitChanges();
    }
}

您为要删除的项目创建一个DirectoryEntry 对象,然后为其父项创建一个DirectoryEntry。然后,您告诉父级删除该对象。

您也可以这样做:

string appPoolPath = "IIS://Localhost/W3SVC/AppPools/MyAppPool";
using(DirectoryEntry appPool = new DirectoryEntry(appPoolPath))
{
    using(DirectoryEntry parent = appPool.Parent)
    {
        parent.Children.Remove(appPool);
        parent.CommitChanges();
    }
}

根据手头的任务,我将使用任何一种方法。

【讨论】:

  • 当我有子 DirectoryEntry 时,是否有一种简单的方法来获取父级? appPool.Parent 会工作吗?
  • “appPoolpath”与“appPoolPath”的小写问题。除了那个很好的答案
  • @simon - 很好地发现和修复。 ta.
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-01-12
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多