elevation.go 157 B

1234567891011
  1. //go:build windows
  2. package winapi
  3. import (
  4. "golang.org/x/sys/windows"
  5. )
  6. func IsElevated() bool {
  7. return windows.GetCurrentProcessToken().IsElevated()
  8. }