我正在尝试从远程计算机访问 IIS-7 Web 服务器中的网站名称。以下是尝试使用下面提到的代码时的详细信息。
错误信息
RPC 服务器不可用。
代码
string path = "IIS://ServerName/W3SVC";
using (DirectoryEntry w3svc = new DirectoryEntry(path, "UserName", "Password"))
{
foreach (DirectoryEntry entry in w3svc.Children)
{
if (entry.SchemaClassName == "IIsWebServer")
{
string websiteName = (string)entry.Properties["ServerComment"].Value;
}
}
}