SetServiceObjectSecurity

[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool SetServiceObjectSecurity(
   IntPtr hService,
   SECURITY_INFORMATION dwSecurityInformation,
   [In] byte[] lpSecurityDescriptor
);

Microsoft documentation: Link

Last updated