UserHandleGrantAccess

[DllImport("user32.dll", SetLastError = true)]
public static extern bool UserHandleGrantAccess(
   IntPtr hUserHandle,
   IntPtr hJob,
   bool bGrant
);

Microsoft documentation: Link

Last updated