开发者

Grant application access to UAC protected registry section

开发者 https://www.devze.com 2023-04-09 00:07 出处:网络
I have a legacy USB device driver which reads and writes data from and to the Windows registry to HKEY_LOCAL_MACHINE/SOFTWARE/COMPANY/PRODUCT.

I have a legacy USB device driver which reads and writes data from and to the Windows registry to HKEY_LOCAL_MACHINE/SOFTWARE/COMPANY/PRODUCT. I am not able to change this so I need a workaround because I noticed that on Windows Vista and Windows 7 with UAC enabled the function that performs the write returns an error. My guess is that is simply has no access rights.

My current workaround is to launch my application with administrative privileges but as you might guess this is not a very nice solution. Since the registry is accessed when the USB device is initialized when the application starts I also cannot simply request a relaunch.

I know that I can give access rights to certain folders on the system with cacls from my installer (which runs with administrative privileges) but is there开发者_StackOverflow something similar I can do to grant this to this specific registry entry? (I would like both grant and revoke commands.)


Giving non-admin users write permissions to HKLM should be avoided. If you still need to do it, however, you could use SetACL to set/remove permissions. SetACL is available as a standalone command-line executable and as a COM object.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号