How to Access AppData in IE Protected Mode (from a Managed BHO)

后端 未结 4 664
悲哀的现实
悲哀的现实 2020-12-09 06:12

I am writing an IE Extension (BHO) in C#. When run in protected mode (IE\'s new UAC-compliant mode which forces all extensions to run at low-integrity), it fails because it

4条回答
  •  天命终不由人
    2020-12-09 06:42

    You get a one-shot privileged access during RegisterBHO. After that you are in protected mode.

    If you need to change long term storage during the runtime of the BHO, I have found that the registry is the best place. Your changes will be only visible to you, but they will persist.

提交回复
热议问题