博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DirectoryEntry配置IIS7出现ADSI Error:未知错误(0x80005000)
阅读量:4444 次
发布时间:2019-06-07

本文共 2025 字,大约阅读时间需要 6 分钟。

一、错误情况

环境:win7+iis7.0

DirectoryEntry配置IIS7出现如下错误

或者是

下面一段代码在IIS6.0下运转正常,但IIS7.0下运转会出错:

 

System.DirectoryServices.DirectoryEntry iisServer;

iisServer = new System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC/1");
System.DirectoryServices.DirectoryEntry rootFolder = iisServer.Children.Find("Root","IIsWebVirtualDir");//此处抛出异常

异常内容如下: 

[System.Runtime.InteropServices.COMException] {"Unknown error (0x80005000)"} 

System.Runtime.InteropServices.COMException

Unknown error (0x80005000)

   at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
   at System.DirectoryServices.DirectoryEntry.Bind()
   at System.DirectoryServices.DirectoryEntry.get_IsContainer()
   at System.DirectoryServices.DirectoryEntries.CheckIsContainer()
   at System.DirectoryServices.DirectoryEntries.Find(String name, String schemaClassName) 

 

二、错误分析

这段异常代码表明 IIS://localhost/W3SVC/1 的ADSI provider不存在或者无法访问。

打开IIS管理器你可以看到服务器的localhost(即默认站点)是存在的并正在运行,且主站点ID确实是1。这说明问题是出现在 IIS://localhost的ADSI provider。

 

三、错误原因

win7使用的是iis7,而IIS 7默认并没有安装ADSI provider。 

 

四、解决方法 

要解决这个问题就得安装“IIS 元和IIS 6配置兼容性”。

“控制面板”->“程序和功能”->面板左侧“打开或关闭windows功能”->“Internet信息服务”->“Web管理工具”->“IIS 6管理兼容性”->“IIS 元数据库和IIS 6配置兼容性”。

如下图所示:

 

 

五、更好的解决方法

更理想的解决方式是用 WMI provider操作IIS 7 ,可参见此篇文章

 

六、Windows Server 2008出现这种错误怎么办?

在Windows Server 2008下,使用角色服务安装完“IIS 元数据库和IIS 6配置兼容性”,还有可能出现如下错误:  

[System.Runtime.InteropServices.COMException] {"Access is denied.\r\n"} System.Runtime.InteropServices.COMException

ErrorCode 0x80070005

Access is denied.

   at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)

   at System.DirectoryServices.DirectoryEntry.Bind()
   at System.DirectoryServices.DirectoryEntry.get_IsContainer()
   at System.DirectoryServices.DirectoryEntries.CheckIsContainer()
   at System.DirectoryServices.DirectoryEntries.Find(String name, String schemaClassName)

这是因为 Windows Server 2008被UAC(User Account Control,用户账户控制)锁定了.  你需要用管理员(Administrator)账户执行这个程序. 另一种方式是设置运行此程序的账户拥有如下权限: Logon as a Service"/ "Logon as a Batch Job"

转载于:https://www.cnblogs.com/lizhenlin/p/7214514.html

你可能感兴趣的文章
循环赛日程编排c代码
查看>>
Python复习笔记-字典和文件操作
查看>>
eclipse 编码设置<非原创>
查看>>
CentOs Linux 常见命令
查看>>
maven搭建springmvc+mybatis项目
查看>>
sql 经典语句【摘录】
查看>>
zigzag数组,螺旋数组
查看>>
iOS SQLite3的使用
查看>>
[Leetcode]017. Letter Combinations of a Phone Number
查看>>
Luogu 3375 【模板】KMP字符串匹配(KMP算法)
查看>>
[poj1737]Connected Graph(连通图计数)
查看>>
仿照Android标准API写的各种形式的弹出框
查看>>
办公用品管理系统VB——模块
查看>>
个人作业——统计多个文本文件中的单词及词组出现频率
查看>>
LogStash 日志搜集
查看>>
jdk1.7 与 jdk1.6两个版本的一点小区别
查看>>
ZoomBar 设计
查看>>
路在脚下,梦已启程
查看>>
android抓log
查看>>
Linux下使用Magent+Memcached缓存服务器集群部署
查看>>