0

这是在我的本地 Windows 8 和 VS .NET 2015 环境中运行的控制台应用程序的 C# 代码片段。当我在本地 Windows 8 机器上的管理员 DOS/CMD 窗口中运行控制台应用程序时,它也可以工作。

使用 Windows 远程桌面连接到 Windows 2012 R2 服务器时,控制台应用程序(以管理员身份打开的 DOS/CMD 窗口)不接受 ESC 键。

do
{
    while (!Console.KeyAvailable)
    {
         // Do nothing while waiting for input
    }
} while (Console.ReadKey(true).Key != ConsoleKey.Escape);

我知道 Windows 2012 R2 在使用远程桌面时具有用于特殊命令的特殊键,但是,这是 ESC 键在 DOS/CMD 窗口中无法与远程桌面一起使用到 Windows 2012 R2 。

我知道我可以使用不同的键(或其他组合),但我想知道为什么 ESC 键在这种情况下不被 DOS/控制台窗口“接受”。

[编辑]:好的,我需要在这里更具体。

我真的想将 EXE 作为控制台应用程序运行。我发布的代码在 Windows 2008 中工作,但还有更多!在将结果输出到 CMD/DOS 提示符之前,我必须首先附加到现有的父 CMD 窗口。我将在以下 URL 中找到的代码用于新的 AllocConsole() 或 AttachConsole()。 http://www.jankowskimichal.pl/en/2011/12/wpf-hybrid-application-with-parameters/

在 Windows Server 2008 和 Windows Server 2012 上,它始终写入我使用 Console.Write.... 编写的所有内容。

但是,在 Windows Server 2012 中,此代码不再使用 ReadKey() 或上面最初发布的代码接受我的输入。

代码片段(bool "show" = true 是否附加到控制台; false 分离)。同样,在所有情况下都可以输出,但不会在 Console.ReadKey() 处接受我的输入。

//Declarations area
[DllImport("kernel32.dll",
        EntryPoint = "AllocConsole",
        SetLastError = true,
        CharSet = CharSet.Auto,
        CallingConvention = CallingConvention.StdCall)]
    private static extern bool AllocConsole();

    [DllImport("kernel32.dll", SetLastError = true)]
    private static extern bool FreeConsole();

    [DllImport("kernel32", SetLastError = true)]
    private static extern bool AttachConsole(int dwProcessId);

    [DllImport("user32.dll")]
    private static extern IntPtr GetForegroundWindow();

    [DllImport("user32.dll", SetLastError = true)]
    private static extern uint GetWindowThreadProcessId(IntPtr hWnd, out int lpdwProcessId);

    private enum ConsoleCtrlEvent
    {
        CTRL_C = 0,
        CTRL_BREAK = 1,
        CTRL_CLOSE = 2,
        CTRL_LOGOFF = 5,
        CTRL_SHUTDOWN = 6
    }

    [DllImport("kernel32.dll", SetLastError = true)]
    private static extern bool GenerateConsoleCtrlEvent(ConsoleCtrlEvent sigevent, int dwProcessGroupId);

    [DllImport("User32.Dll", EntryPoint = "PostMessageA")]
    private static extern bool PostMessage(IntPtr hWnd, uint msg, int wParam, int lParam);

[剪辑]

//Caller:
//Attach or create a console window to display information to the user
DoConsoleWindow(true);
//Determine if user has administrator privileges
if (UserHasAdminPrivileges(args))
{
    //Write information to the console
    HandleCommandArgs(args);
}
DoConsoleWindow(false);

[剪辑]

private static void DoConsoleWindow(bool show)
    {
        if (show == true)
        {
            ptr = GetForegroundWindow();
            int u;

            GetWindowThreadProcessId(ptr, out u);

            process = Process.GetProcessById(u);

            if (process.ProcessName == "cmd")    //Is the uppermost window a cmd process?
            {
                AttachConsole(process.Id);
                attachedExisting = true;
            }
            else
            {
                //no console AND we're in console mode ... create a new console.
                AllocConsole();
            }
        }
        else
        {
            try
            {
                //Must pause for 2 seconds to allow display of data to catch up?
                Thread.Sleep(2000);

                //Send the {ENTER} Key to the console. 
                PostMessage(ptr, WM_KEYDOWN, VK_RETURN, 0);

                FreeConsole();

                if (process != null)
                {
                    if (attachedExisting != true)
                    {
                        process.Close();
                    }
                }
            }
            catch (Exception ex)
            {
                Logger.Log(TraceEventType.Error,
                    string.Format("{0} failed handling console close", serviceName),
                    string.Format("{0} failed handling console close: {1}",
                        serviceName, ex.ToString()),
                        serviceLogContext);
            }
        }
    }
4

1 回答 1

0

让我们看看你的代码

do
{
    while (!Console.KeyAvailable)
    {
         // Do nothing while waiting for input
    }
} while (Console.ReadKey(true).Key != ConsoleKey.Escape);

那个部分

while (!Console.KeyAvailable)

是一个热循环。一个 CPU 内核将以接近 100% 的速度运行,轮询 KeyAvailable。在我的 8 核机器上,代码仍然响应并在按下 ConsoleKey.Escape 时终止。但是,它不必要地低效,并且如果您只有一个或有限的 CPU 内核,则可能会导致按键事件被错过。

改写成更高效

do
{
} while (Console.ReadKey(true).Key != ConsoleKey.Escape);

看看问题是否消失。

我在通过远程桌面访问的 Windows 2012 R2 服务器上运行了您的原始代码和我的原始代码。两种变体都有效。我在该服务器上确实有几个可用的 CPU 内核,其中一个确实使用您的代码达到了 100%。

于 2016-01-19T23:19:31.230 回答