最先我需要在IIS下創建虛擬目錄,用的是DirecotryEntry這個類,怎麼也不能,總會報![System.Runtime.InteropServices.COMException]{"未知錯誤(0x80005000)"}
這個錯誤。
private static void TestDirectoryEntry()
{
try
{
string path = "IISWebService://" + System.Environment.MachineName + "/W3SVC";
System.Collections.ArrayList webSite = new System.Collections.ArrayList();
DirectoryEntry iis = new DirectoryEntry("IIS://localhost/W3SVC");
if (IIS != null)
{
foreach (DirectoryEntry entry in IIS.Children)
{
if (string.Compare(entry.ScheMaclassName, "IISWebServer") == 0)
{
Console.WriteLine(entry.Name);
Console.WriteLine(entry.PropertIEs["ServerComment"].Value.ToString());
Console.WriteLine(entry.Path);
}
Console.WriteLine();
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.WriteLine(ex.StackTrace);
}
}
後來瘋狂地找原因
第一步,找機子上安全方面的問題。我IIS7是裝在Windows server2008上的。我取消了系統的UAC。並用“以管理員身份”運行的該程序。結果還是不行。
第二步,在網上找有沒有人跟我碰到相同的問題。果然!很多人都有,網上給的解決方案是:
The IIS Metabase and IIS6 Configuration Compatibility is not automatically installed when you enable the Web Server role in Windows 2008 Server. If you enable this feature, your old DirectoryServices code in .Net should work like it used to.
需要安裝 IIS6 Metabase 兼容性組件
用了這種方案果然成功了!但事情並沒有結束。
第三步:找原因,為什麼IIS7 不能用這種方法!
功夫不負有心人!