PowerShell

How to install Windows Terminal on Windows Server 2022

Only Microsoft knows why Windows Terminal is only available on client OS. But there is a way out. We can install Windows Terminal also on Windows Server via PowerShell. The disadvantage is that Terminal is not updated by Windows Updates. This is bearable. So let’s get started.

Copy the following code into ISE or Visual Studio code.
Note that you need to enter the latest version of Windows Terminal in line 2. It is a URL and I am using version 1.16 in this post.

# Provide URL to newest version of Windows Terminal Application
$url = 'https://github.com/microsoft/terminal/releases/download/v1.16.10261.0/Microsoft.WindowsTerminal_Win10_1.16.10261.0_8wekyb3d8bbwe.msixbundle' 
$split = Split-Path $url -Leaf

# Prerequisites
Start-BitsTransfer -Source 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx' `
-Destination $home\Microsoft.VCLibs.x86.14.00.Desktop.appx
Add-AppxPackage $home\Microsoft.VCLibs.x86.14.00.Desktop.appx

# Download
Start-BitsTransfer `
-Source $url `
-Destination (Join-Path -Path $home -ChildPath $split)

# Installation
Add-AppxPackage -Path (Join-Path -Path $home -ChildPath $split)

Wait until the code is completed and you will find Windows Terminal in the Start menu.

That worked out just fine. See you next time.

2 replies »

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.