无法从Visual Studio

时间:2017-05-30 13:42:44

标签: c# exe narrator

我无法使用C#从Visual Studio启动narrator程序。我试过使用完整路径和其他类似的黑客但没有结果? 代码是:

System.Diagnostics.Process.Start(@"C:\windows\system32\narrator.exe");

类似的代码能够执行同一文件夹中的 notepad.exe 。谁可以在这方面帮助我?  我得到的执行是::

“System.dll中发生了'System.ComponentModel.Win32Exception'类型的未处理异常 附加信息:系统找不到指定的文件“

但是文件存在于指定的路径中。 然后我将整个system32文件夹复制到我的桌面并给出新的位置。然后代码通过,没有任何异常,但没有启动解说器应用程序。

1 个答案:

答案 0 :(得分:1)

您可以使用某些系统调用禁用文件系统重定向。请注意,即使修复了重定向,您仍然无法在没有提升权限的情况下启动Narrator。

const int ERROR_CANCELLED = 1223; //The operation was canceled by the user.

var oldValue = IntPtr.Zero;
Process p = null;

try
{
    if (SafeNativeMethods.Wow64DisableWow64FsRedirection(ref oldValue))
    {
        var pinfo = new ProcessStartInfo(@"C:\Windows\System32\Narrator.exe")
        {
            CreateNoWindow = true,
            UseShellExecute = true,
            Verb = "runas"
        };

        p = Process.Start(pinfo);
    }

    // Do stuff.

    p.Close();

}
catch (Win32Exception ex)
{
    // User canceled the UAC dialog.
    if (ex.NativeErrorCode != ERROR_CANCELLED)
        throw;
}
finally
{
    SafeNativeMethods.Wow64RevertWow64FsRedirection(oldValue);
}


[System.Security.SuppressUnmanagedCodeSecurity]
internal static class SafeNativeMethods
{
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern bool Wow64DisableWow64FsRedirection(ref IntPtr ptr);

    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern bool Wow64RevertWow64FsRedirection(IntPtr ptr);

}