Internet Explorer BHO, writing to registry and admin privileges

早过忘川 提交于 2019-12-10 11:43:22

问题


for some reasons when I try to write to registry when IE doesn't run with admin privileges,

Utils::SetValueInRegistry(HKEY_CURRENT_USER,L"Software\\myApp23",L"Domain", value.c_str());

Anyone knows how to gain my BHO rights to write to registry everytime? Or maybe should I write to another section to registry that's available for writing? The information I need to store is very dynamic and used in order to communicate between tabs.

Thanks.


回答1:


Internet Explorer is running with Low Integrity Level. Use a key below HKEY_CURRENT_USER\Software\LowRegistry



来源:https://stackoverflow.com/questions/16336437/internet-explorer-bho-writing-to-registry-and-admin-privileges

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!