How do I change the ACL in a registry key? (C ++)

I need to delete the regsitry key. It has ACL denial for Set Value (I need this permission to remove it).

How do I change the ACL in C ++?

+1


source to share


2 answers


You can use RegSetKeySecurity to configure security settings and then delete the key as usual.



+3


source


This is a Win32 FAQ.



See news Win32 api ng: //194.177.96.26/comp.os.ms-windows.programmer.win32

0


source







All Articles