C# 删除 Windows Server 2003 上的 IIS 虚拟目录会出现 COMException

发布于 2024-07-19 03:09:03 字数 215 浏览 4 评论 0原文

  DirectoryEntry oDirectoryEntry = new DirectoryEntry(virtualDirMetaPath);
  oDirectoryEntry.DeleteTree();

这会引发 COMException 0x80005000。 欢迎任何指点。 创建虚拟目录就可以了。 仅在卸载时,我才会在事件查看器中记录此错误。

  DirectoryEntry oDirectoryEntry = new DirectoryEntry(virtualDirMetaPath);
  oDirectoryEntry.DeleteTree();

This throws a COMException 0x80005000. Any pointers welcome. Creation of virtual directory is fine. Its only at uninstall I get this error logged in Event Viewver.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铜锣湾横着走 2024-07-26 03:09:03

为什么要使用纯粹与 ActiveDirectory 相关的 DirectoryEntry 类来管理 IIS 虚拟目录? 请参阅获取指示。

How come you're using DirectoryEntry, which is purely ActiveDirectory-related class, to manage IIS virtual directories? See this for pointers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文