Installing Windows Terminal on Windows Server 2022

To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker, purchase my 3D plans, or make a donation or subscribe on Ko-Fi. Thank you!

Hello,

It is possible to install Windows Terminal, the new Windows terminal integrated natively into Windows 11.
However, you will need to manually update Windows Terminal.
Project page:
https://github.com/microsoft/terminal

Just go to the download page and get the address of the latest stable version (MSIXbunble):
https://github.com/microsoft/terminal/releases

Installing Windows Terminal in PowerShell

# Update # On recent versions, it is necessary to install a package as a prerequisite [URI]$URLVClib = 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx' $packageVCLib = $URLVClib.Segments[-1] # Download the package Invoke-WebRequest -Uri $URLVClib -OutFile $packageVCLib # Install the package Add-AppxPackage $packageVCLib # Link to the Windows terminal MSIXbundle package [URI]$URL = 'https://github.com/microsoft/terminal/releases/download/v1.14.1962.0/Microsoft.WindowsTerminal_Win10_1.14.1962.0_8wekyb3d8bbwe.msixbundle' # Package name $package = $URL.Segments[-1] # Download package Invoke-WebRequest -Uri $URL -OutFile $package # Install package Add-AppxPackage $package

If you have problems displaying the font install the cascadia font :

https://github.com/microsoft/cascadia-code

More information about cascadia:
https://docs.microsoft.com/en-us/windows/terminal/cascadia-code

Related links