Jump to content

Windows Console

From Wikipedia, the free encyclopedia

Other namesWin32 console
Developer(s)Microsoft
Repositorygithub.com/microsoft/terminal/tree/main/src/host
Written inC++
Operating systemMicrosoft Windows
PlatformIA-32, x86-64, ARM64
TypeTerminal emulator
LicenseMIT License
Websitedocs.microsoft.com/en-us/windows/console/

Windows Console is a GUI application for running console applications in Windows. Windows Console is used for running text-based programs such as operating system shells (i.e. Command Prompt and PowerShell), utilities (i.e. Far Manager) and some, generally older, applications (i.e. Midnight Commander).

Windows Terminal was introduced in Windows 10 as a replacement for Windows Console.[1] In 2019, the console host was open-sourced under the MIT License, alongside Windows Terminal.[2]

Use

[edit]

Full-screen mode

[edit]
Windows PowerShell on Windows Vista
Midnight Commander using box-drawing characters

Windows Console runs in either window or full-screen mode. The mode can be toggled by pressing Alt+↵ Enter.

In window mode, the console writes text in a window and uses an operating system's font rendering. In this mode, an application's user interaction is controlled by the windowing system; analogous to X Window System applications such as xterm.

In Windows XP and earlier, the full-screen console uses a hardware text mode and uploads a raster font to the video adapter; analogous to a text-based system console. This early full-screen mode only supports VGA-compatible text modes, giving it a maximum character resolution of 80 columns by 28 rows.[3] This mode was removed in Windows Vista,[4] although until Windows 8, it was possible to circumvent this issue by installing a Windows XP display driver.[4][5]

Windows 10 features a full-screen mode once again. The implementation uses the native Windows rendering subsystem; instead of the text mode, and supports rows and columns to fill the screen.[6]

Programmatic access

[edit]

A program may programmatically interact with its host console via Windows API, which exposes both high-level functions (such as ReadConsole and WriteConsole) and low-level functions (e.g. ReadConsoleInput and WriteConsoleOutput).[7]

Fonts and colors

[edit]

A user can configure the console font or color palette; either system-wide or application level. An instance of a console application, however, cannot change its font or color palette on the fly.

Distinction from DOS

[edit]

A console application is distinct from an MS-DOS application, even though on Windows (especially on Windows 9x), they may not look different. A console application has access to Windows API and does not run on MS-DOS or compatible systems. A DOS application cannot access Windows API and only runs on a 32-bit version of Windows with the aid of Virtual DOS machine (VDM).

Design

[edit]

Input/output buffering

[edit]

An instance of a Windows Console has a screen buffer and an input buffer. The input buffer is a queue where events are stored (from keyboard, mouse etc.). The output buffer is a rectangular grid where characters are stored, together with their attributes. A console window may have several output buffers, only one of which is active (i.e. displayed) for a given moment.

Implementations

[edit]

In Windows 3.1 and earlier, there is no native support for consoles. Because those version are merely a graphical interface for MS-DOS, most text programs that ran on earlier Windows versions were actually MS-DOS programs running in a window. To simplify the task of porting applications to Windows, early versions of Visual C++ are supplied with QuickWin, a library that implements basic console functionality inside a regular window. A similar library for Borland C++ was called EasyWin.

Windows 9x

[edit]
Command.com running in a Windows console on Windows 95

Windows 9x support is relatively poor compared to Windows NT, because the console window runs in the system virtual DOS machine and so keyboard input to a Win32 console application had to be directed to it by conagent.exe running in a DOS VM that are also used for real DOS applications by hooking the keyboard interrupt. conagent.exe then calls Vcond (which is a VxD). Vcond then had to pass the keyboard input to the System VM, and then finally to the Win32 console application. Besides performance, another problem with this implementation is that drives that are local to a DOS VM are not visible to a Win32 console application. This can cause confusion.

Under Windows 9x, the screen buffer mirrors the structure of VGA text buffer, with two bytes per character cell: one byte for character code, one byte for attributes (the character must be in OEM character set, the attribute is with high-intensity background/no blinking). This speeds up operation considerably if the actual VGA text mode is used.

Windows NT and Windows CE

[edit]
The Windows Subsystem for Linux running Bash on Windows 10
Cmd.exe running on Windows CE 3.0

Traditionally, the Client/Server Runtime Subsystem (CSRSS) has been responsible for managing console windows on the Windows NT family of operating systems.[8] In Windows 7, CSRSS spawns one conhost.exe for each console window, to manage it. In Windows 8 and later, the console applications spawn their conhost.exe processes directly. This change has both security and usability implications. While CSRSS runs in a highly privileged security context, each conhost.exe runs in the same security context as the console app. In addition, in Windows 7, this change enabled console windows to have the features of the Aero Glass theme.[9]

On Windows NT and Windows CE, the screen buffer uses four bytes per character cell: two bytes for character code, two bytes for attributes. The character is then encoded in a 16-bit subset of Unicode (UCS-2).[10] For backward compatibility, the console APIs exist in two versions: Unicode and non-Unicode. The non-Unicode versions of APIs can use code page switching to extend the range of displayed characters (but only if TrueType fonts are used for the console window, thereby extending the range of codes available). Even UTF-8 is available as "code page 65001"[11] (displaying only from the UCS-2 subset of full Unicode[citation needed]).

As of the Windows 10 October 2018 update, the Windows Console has full Unicode support.[12]

See also

[edit]

References

[edit]
  1. ^ Cinnamon, Kayla (May 6, 2019). "Introducing Windows Terminal". Microsoft Corporation. Retrieved November 20, 2020.
  2. ^ Cinnamon, Kayla (May 6, 2019). "Introducing Windows Terminal". Windows Command Line Tools For Developers. Microsoft. Retrieved May 10, 2019.
  3. ^ Julio Sanchez; Maria P. Canton (2003), "VGA Fundamentals, Part II: DOS Graphics", The PC Graphics Handbook (for C++ Programmers) (Book), CRC Press, p. 125, ISBN 0849316782
  4. ^ a b "Some 16-bit DOS-based Programs and the Command Prompt will not run in full-screen mode in Windows Vista and in Windows 7". Support. Microsoft. September 23, 2011.
  5. ^ "Roadmap for Developing Drivers for the Windows 2000 Display Driver Model (XDDM)". Windows Dev Center - Hardware. Microsoft. November 16, 2013. Retrieved December 16, 2013. XDDM and VGA drivers will not compile on Windows 8 and later versions
  6. ^ Tkachenko, Sergey (November 24, 2014). "Open command prompt fullscreen in Windows 10". Winaero. Retrieved July 31, 2019.
  7. ^ "Console Modes". Windows Console documentation. Microsoft. Retrieved October 13, 2020 – via Microsoft Docs.
  8. ^ Microsoft Security Advisory (930181): Exploit Code Published Affecting Windows Client Server Run-Time Subsystem
  9. ^ Yosifovich, Pavel; Ionescu, Alex; Russinovich, Mark E.; Solomon, David A. (May 15, 2017). Windows Internals, Part 1: System architecture, processes, threads, memory management, and more (7th ed.). Redmond, Washington: Microsoft Press. p. 67. ISBN 9780735684188.
  10. ^ "Console Reference". Microsoft. 2009. Retrieved January 1, 2010.
  11. ^ "Release Notes". docs.microsoft.com. June 27, 2022. Console: Fix for no output text being displayed in codepage 65001 (utf8)
  12. ^ Turner, Rich (November 15, 2018). "Windows Command-Line: Unicode and UTF-8 Output Text Buffer". Windows Command Line Tools For Developers. Microsoft. Retrieved June 14, 2019.
[edit]