7

アンインストール方法の一部として、仮想ディレクトリとアプリケーション プールを .NET から削除する必要があります。どこかの Web で次のコードを見つけました。

    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.");
        }
    }

COMExceptionしかし、それは上に投げるようtree.CommitChanges();です。この行は必要ですか?それは正しいアプローチですか?

4

1 に答える 1

6

アプリケーションプール、仮想ディレクトリ、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();
    }
}

手元のタスクに応じて、どちらかの方法を使用します。

于 2009-03-20T18:07:06.963 に答える