controlmymonitormanagement/Library/Helpers/UAC.cs
2022-05-23 00:58:58 +08:00

19 lines
613 B
C#

using System;
using System.Security.Principal;
namespace CMM.Library.Helpers
{
public class UAC
{
public static void Check()
{
var identity = WindowsIdentity.GetCurrent();
var principal = new WindowsPrincipal(identity);
if (!principal.IsInRole(WindowsBuiltInRole.Administrator))
throw new Exception($"Cannot delete task with your current identity '{identity.Name}' permissions level." +
"You likely need to run this application 'as administrator' even if you are using an administrator account.");
}
}
}