Windows Terminal is the modern command-line application for Windows and supports PowerShell, Command Prompt, and WSL in a single interface.
On recent versions of Windows (Windows 11 and newer), Windows Terminal is installed by default. If it’s already available on your system, no installation is required.
If it isn’t installed, or you’re working on older systems or automation scenarios, the methods below cover all supported ways to install it.
Quick check (is it already installed?)
Before installing anything, check:
- Press the Windows key
- Type Windows Terminal
- If it appears, it’s already installed
You can also run:
wt
If Windows Terminal opens, you’re good to go.
1. Install Windows Terminal from the Microsoft Store
This is the simplest and most common method.
Installing from the Microsoft Store ensures:
- Automatic updates
- The latest stable release
- Minimal maintenance
Steps:
- Open the Microsoft Store
- Search for Windows Terminal
- Click Install
Once installed, updates are handled automatically by the Store.
2. Install Windows Terminal using Chocolatey
Chocolatey is useful when:
- Managing multiple machines
- Automating workstation builds
- Working in enterprise environments
If Chocolatey is not installed:
# Install Choco
Set-ExecutionPolicy Bypass -Scope Process -Force
[System.Net.ServicePointManager]::SecurityProtocol = `
[System.Net.ServicePointManager]::SecurityProtocol -bor 3072
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
Install Windows Terminal:
# Install WT with Choco
choco install microsoft-windows-terminal
Chocolatey will also handle upgrades when newer versions are released.
3. Install Windows Terminal using Scoop
Scoop is a lightweight, command-line–focused installer that works well for developer environments.
Install Scoop (current user):
# Install Scoop
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
Install Windows Terminal:
# Install WT with Scoop
scoop install windows-terminal
Scoop will keep the installation up to date automatically.
Running Windows Terminal as Administrator
You can run Windows Terminal with elevated privileges in several ways.
Start Menu
- Search for Windows Terminal
- Select Run as administrator
From PowerShell (open elevated Terminal)
You can also launch an elevated Windows Terminal session directly:
# Run Windows Terminal with PowerShell as Admin
Start-Process -Verb RunAs cmd.exe '/c start wt.exe -p "Windows PowerShell"'
This opens Windows Terminal and starts an elevated PowerShell profile.
Notes
- Windows Terminal is the default terminal experience on modern Windows
- It supports multiple tabs, panes, and profiles (PowerShell, WSL, cmd)
- Most PowerShell administration work benefits from using Windows Terminal
- If scripts fail unexpectedly, ensure the session is running as Administrator
Related
- How to Open PowerShell as Administrator
- PowerShell execution policy errors
- Common PowerShell scripts for Windows administration




