Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/packaging/grafana-agent-flow/windows/macros.nsis
5414 views
!macro VerifyUserIsAdmin
UserInfo::GetAccountType
Pop $0
${If} $0 != "admin" # Require admin rights on NT4+
        MessageBox MB_ICONSTOP "Administrator rights required!"
        SetErrorLevel 740 # ERROR_ELEVATION_REQUIRED
        Quit
${EndIf}
!macroend