COM 服务器实例创建失败并出现错误 -2147024156
当我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没错,这就是问题所在。没有在远程计算机上显示 UAC 对话框的机制。这将完全违背 UAC 的目的。你必须让它在没有对话框的情况下工作。将清单中的“requireAdministor”替换为“asInvoker”,并将代码调整为不需要该权限。祝你好运。
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.