gpt4 book ai didi

c# - 如果我的程序不是在管理模式下运行,我该如何阻止它运行? XP 和 Windows 7

转载 作者:行者123 更新时间:2023-11-30 14:01:08 24 4
gpt4 key购买 nike

我有一个应该与多操作系统兼容的 C# 程序。它需要访问权限才能创建目录并获取 WMI 数据,但这仅在程序以管理员身份运行时才可用。否则,它将失败。

如果程序未检测到自己以管理员身份运行,是否有任何命令可以用来停止运行该程序?我尝试添加一个 app.manifest 并使用“requireAdministrator”,它提示登录,但这似乎只适用于 Windows 7 和 Vista,不适用于 XP。

例子:

 if (isAdmin==0)
Console.WriteLine("Please run this as an administrator");
exit;

最佳答案

检查用户是否是管理员

public static bool IsAdministrator()
{
WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent();
WindowsPrincipal windowsPrincipal = new WindowsPrincipal(windowsIdentity);

return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}

如果不是管理员请重启应用

public static bool RestartAsAdministrator(string filePath, string fileName, string errorCaption)
{
Process process = null;
ProcessStartInfo processStartInfo = new ProcessStartInfo();
processStartInfo.FileName = Path.Combine(filePath, fileName);

if (Environment.OSVersion.Version.Major >= 5) //5 is XP and 6 is Vista and 7
processStartInfo.Verb = "runas";

processStartInfo.Arguments = "";
processStartInfo.WindowStyle = ProcessWindowStyle.Normal;
processStartInfo.UseShellExecute = true;

try
{
process = Process.Start(processStartInfo);
}

catch (Exception)
{
MessageBox.Show("Couldn't start as admin.\nPlease try manually by Right Clicking on " + Path.GetFileNameWithoutExtension(fileName) + " and selecting \"Run as administrator\"",
errorCaption + " Error", MessageBoxButton.OK, MessageBoxImage.Error);

return false;
}

finally
{
if (process != null)
process.Dispose();
}

return true;
}

应用程序 list 文件(用于自动以管理员身份运行)

<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />

关于c# - 如果我的程序不是在管理模式下运行,我该如何阻止它运行? XP 和 Windows 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8948361/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com