Skip to content

Instantly share code, notes, and snippets.

@nataz77
Created July 5, 2021 13:21
Show Gist options
  • Save nataz77/58dbff4f1088378cc3a32cb5945a9758 to your computer and use it in GitHub Desktop.
Save nataz77/58dbff4f1088378cc3a32cb5945a9758 to your computer and use it in GitHub Desktop.
Check if user is admin/su
//Install Mono.Posix.NETStandard
public static bool IsAdministrator =>
RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ?
new WindowsPrincipal(WindowsIdentity.GetCurrent())
.IsInRole(WindowsBuiltInRole.Administrator) :
Mono.Unix.Native.Syscall.geteuid() == 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment