这是在我的本地 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);
}
}
}