COM 服务器实例创建失败并出现错误 -2147024156

发布于 2024-11-27 23:45:06 字数 103 浏览 1 评论 0原文

当我尝试使用 CoCreateInstance 创建 DCOM 服务器时,它失败并显示错误代码“-2147024156”。错误代码对应的错误消息是“进程需要提升”。我应该做什么来纠正这个问题?

When I try to create a DCOM server with CoCreateInstance, it fails with error code '-2147024156'. The error message corresponding to the error code is 'the process requires elevation'. What should I do to correct this issue?

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

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

发布评论

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

评论(1

烂柯人 2024-12-04 23:45:06

客户端和服务器应用程序都会出现 UAC 对话框

没错,这就是问题所在。没有在远程计算机上显示 UAC 对话框的机制。这将完全违背 UAC 的目的。你必须让它在没有对话框的情况下工作。将清单中的“requireAdministor”替换为“asInvoker”,并将代码调整为不需要该权限。祝你好运。

A UAC dialog appears for Both Client and Server applications

Right, and that's the problem. There is no mechanism to display a UAC dialog on a remote machine. That would utterly defeat the point of UAC. You'll have to make it work without the dialog. Replace "requireAdministor" in the manifest with "asInvoker" and adjust the code to not require the privilege. Good luck with it.

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