无法在不导致异常的情况下调用Process.EnterDebugMode()

时间:2015-05-06 22:41:41

标签: c# .net bsod

每当我关闭我的应用程序时,我都会尝试自己做BSOD(强制蓝屏死机)。不幸的是,当我致电Process.EnterDebugMode();时,我得到了一个例外:Not all privileges or groups referenced are assigned to the caller

我写了一个键盘记录器(那个部分已经完成),它想要监视修理我的笔记本电脑的维修人员,以便我知道他是否做了任何有趣的事情。

[DllImport("ntdll.dll", SetLastError = true)]
private static extern int NtSetInformationProcess(IntPtr hProcess, int processInformationClass, ref int processInformation, int processInformationLength);

public static void Main() {
    int isCritical = 1;  // we want this to be a Critical Process
    int BreakOnTermination = 0x1D;  // value for BreakOnTermination (flag)


    Process.EnterDebugMode();  //acquire Debug Privileges

    // setting the BreakOnTermination = 1 for the current process
    NtSetInformationProcess(Process.GetCurrentProcess().Handle, BreakOnTermination, ref isCritical, sizeof(int));

1 个答案:

答案 0 :(得分:5)

您的程序需要以管理员权限运行。如果您这样做,您的程序将按预期运行。

您可以使用app.manifest轻松获得app.manfest的程序请求权限 - 右键单击​​VS中的项目并添加应用程序清单文件。生成的注释中有说明,但您需要替换

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

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