BuildTrusteeWithSid

[DllImport("Advapi32.dll", SetLastError = true)]
public static extern void BuildTrusteeWithSid(
   ref TRUSTEE pTrustee,
   IntPtr pSid
);

Microsoft documentation: Link

Last updated