MSDN Community Windows Terminal

Introducing Windows Terminal

Windows Terminal is a modern, fast, efficient, powerful, and productive terminal application for users of command-line tools and shells like Command Prompt, PowerShell, and WSL.

Key Features

Installation

Install Windows Terminal from the Microsoft Store or via the winget package manager.

winget install --id Microsoft.WindowsTerminal -e

Getting Started

Open Windows Terminal and explore the default profile settings. You can customize the settings.json file to personalize colors, fonts, and key bindings.

Sample settings.json snippet

{
  "profiles": {
    "defaults": {
      "fontFace": "Cascadia Code",
      "colorScheme": "One Half Dark"
    },
    "list": [
      {
        "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
        "name": "PowerShell",
        "commandline": "powershell.exe"
      },
      {
        "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
        "name": "Command Prompt",
        "commandline": "cmd.exe"
      }
    ]
  }
}

Resources

Comments