为什么我无法删除 HKLM 上的密钥?
我使用 RegDelnode(HKEY_LOCAL_MACHINE, TEXT("Software\\Test")); 它来自 MSDN,对 HKCU 很有用,但我认为我必须设置权限。如果我是对的,我必须设置哪些权限? 在 c++ builder 上编写程序(如果有帮助的话)。
I'm use RegDelnode(HKEY_LOCAL_MACHINE, TEXT("Software\\Test"));
It's from MSDN and it worked good for HKCU, but i'm think that i must to set privileges. If I right, which privileges i must to set on?
Program write on c++ builder (if that helps).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要修改
HKLM
分支中的内容,您的应用程序必须以管理员权限运行。否则,不允许更改此分支。To modify stuff in the
HKLM
branch your application must run with administrator privileges. Otherwise, changes to this branch are not permitted.