LookupPrivilegeValue
[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool LookupPrivilegeValue(
string lpSystemName,
string lpName,
ref LUID lpLuid
);
Microsoft documentation: Link
Last updated