RegSetKeySecurity
[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.U4)]
public static extern uint RegSetKeySecurity(
IntPtr hKey,
uint SecurityInformation,
byte[] pSecurityDescriptor
);
Microsoft documentation: Link
Last updated