在 Windows 7 中覆盖 DLL 会引发访问被拒绝/错误 5

发布于 2024-11-27 06:54:25 字数 483 浏览 3 评论 0原文

我为我的应用程序开发了一个自动更新程序,它从更新服务器获取所有文件的 MD5 哈希列表,并在不匹配的情况下下载新文件。 目前,这种情况仅发生在主 DLL 文件中,该文件在更新程序完成工作后(!)运行时加载。

它在 Windows XP 中运行得很好,但一些用户已经抱怨说,当更新程序尝试覆盖所述 DLL 文件时,会出现错误 5 访问被拒绝。如果他们以管理员权限运行它,它就可以工作,但是他们在启动程序时总是同意管理员权限,这很烦人。

我的问题:为什么覆盖该 DLL 的访问被拒绝,有没有办法在没有 UAC 提示的情况下实现它?

或者:有没有一种方法可以使应用程序以管理员身份永久运行,用户只需同意一次,而不是每次运行时都同意。

附: 我正在使用 Qt 4.7,尤其是 QFile::open 方法和 QFile::WriteOnly |如果打开失败并显示 errorString() 和一些解释,则 QFile::Truncate 并调用 QMessageBox。

谢谢!

I developed an auto-updater for my application that gets a MD5 hash list for all files from the update server and downloads the new files in case of a mismatch.
At the moment, this only happens for the main DLL file, that is loaded at runtime after (!) the updater has finished his work.

It works perfectly in Windows XP but a few users already complained that the updater gives them Error 5 Access Denied when trying to overwrite said DLL file. If they run it with administrator privileges, it works, but it's an annoyance for them to always agree on admin privileges when starting the program.

My question: why is the access to overwrite that DLL denied, is there a way to make it happen without the UAC prompt?

Alternatively: is there a way to make the application run as administrator permanently in a way that the user just has to agree to it once, and not every time it's run.

PS:
I'm using Qt 4.7, especially the QFile::open method with QFile::WriteOnly | QFile::Truncate and call a QMessageBox if open fails with errorString() and some explanation.

Thanks!

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

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

发布评论

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

评论(1

萌梦深 2024-12-04 06:54:25

您是否确保该应用程序是“单实例”,即从不运行两次?

如果不是,这可能是一个解释...

至于使应用程序始终以管理员身份运行 - 你永远不应该这样做...

编辑:
对于 Windows 7:
您正在尝试直接覆盖程序中的某些内容...这是操作系统的一项安全措施,以防止在没有管理员权限的情况下进行写入...

这些可以帮助处理 UAC:

http://msdn.microsoft.com/en-us/library/bb756929.aspx
http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/20acb8b9-8b9c-4a85-9416-fccdef579f10/
Windows 7 和 Vista UAC - 以编程方式请求C# 中的海拔

Have you made sure that the application is "single-instance" i.e. never running twice ?

IF not this could be an explanation...

As for making the app run always as Administrator - you should NEVER do this...

EDIT:
As for Windows 7:
You are trying to overwrite something in the program directy... it is a security measure of the OS to prevent writing there without admin privilege...

these can help dealing with UAC:

http://msdn.microsoft.com/en-us/library/bb756929.aspx
http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/20acb8b9-8b9c-4a85-9416-fccdef579f10/
Windows 7 and Vista UAC - Programmatically requesting elevation in C#

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