Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Install Windows Terminal without the Microsoft Store

March 12, 2024

Install Windows Terminal without the Microsoft Store

Windows Terminal is a new terminal application that is designed to make it easy to use command line tools, cmd.exe, and Powershell environments. The Windows Terminal supports tabs, setting your own profiles, styles, and configurations. If you have WSL or Azure Cloud Shell installed, the shells for these environments are automatically added to the Windows Terminal console.

The Windows Terminal console is pre-installed on Windows 11 and Windows 10 22 H2. On other versions of Windows, it must be installed manually. Microsoft’s official recommendation is to install Windows Terminal from the Microsoft Store to ensure you have the latest version, which is automatically updated (https://www.microsoft.com/en-us/p/windows-terminal/9n0dx20hk701?activetab=pivot:overviewtab).

If the Microsoft Store app is missing or damaged (for example, in Windows 10 LTSC or Windows Server 2022), you can install Windows Terminal in one of the following ways:

  • By manually downloading the latest Windows Terminal release from GitHub and installing the MSIX file in Windows;
  • By using the Chocolatey or WinGet package manager.

For a manual installation of Windows Terminal, you need to download the msixbundle package from the project’s official GitHub https://github.com/microsoft/terminal/releases. Find the latest Terminal release for your version of Windows in the Asset section and download the file.

You can also manually download the latest version of the APPX/MSIXbundle application from the Microsoft Store.

You can use the Invoke-WebRequest cmdlet to download the installation file:

Invoke-WebRequest -Uri https://github.com/microsoft/terminal/releases/download/v1.18.3181.0/Microsoft.WindowsTerminal_1.18.3181.0_8wekyb3d8bbwe.msixbundle

Next, install the package in Windows by using the Add-AppxPackage cmdlet:

Add-AppxPackage -Path .\Microsoft.WindowsTerminal_1.18.3181.0_8wekyb3d8bbwe.msixbundle

Check that the package has been successfully installed::

Get-AppxPackage *WindowsTerminal* -AllUsers

Add-AppxPackage: install Microsoft.WindowsTerminal msixbundle

If you are using the newest PowerShell Core 7.x, first import the AppX / MSIX package installation module:

Import-Module Appx -UseWindowsPowerShell

The following error may occur when you manually install Windows Terminal on older Windows 10 builds:

Add-AppPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation.
Windows cannot install package Microsoft.WindowsTerminal_1.18.3181.0_8wekyb3d8bbwe.msixbundle because this package depends on a framework that could not be found. Provide the framework "Microsoft.VCLibs.140.00.UWPDesktop" published by "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and minimum version 14.0.30035.0, along with this package to install. The frameworks with name Microsoft.VCLibs.140.00.UWPDesktop" currently installed are .....
You must download and install the VCLibs framework before installing the Microsoft.WindowsTerminal package.

Download the VCLibs package (https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/libraries/c-runtime-packages-desktop-bridge) and install it using the command:

Add-AppPackage .\Microsoft.VCLibs.x64.14.00.Desktop.appx

When installing the Microsoft.WindowsTerminal package on Windows Server 2019 or 2016, you may get another error:

Add-AppxPackage : Deployment failed with HRESULT: 0x80073CFD, A Prerequisite for an install could not be satisfied.

Windows cannot install package Microsoft.WindowsTerminal_1.18.3181.0_8wekyb3d8bbwe because this package is not compatible with the device. The package requires OS version 10.0.19041.0 or higher on the Windows.Mobile device family. The device is currently running OS version 10.0.17763.107.

0x80073CFD: Prerequisite for an install could not be satisfied - Microsoft.WindowsTerminal install error

You can see here that the package checks the operating system during installation. To install Windows Terminal, you need a build of Windows 1903 (10.0.18362.0) or newer. As a result, you cannot install Windows Terminal on Windows Server 2019. In this case, you can use the standalone classic Windows Terminal application, which is available on GitHub since version v1.17.11391.0. Download the Microsoft.WindowsTerminal_1.18.3181.0_x64.zip archive and extract it to a directory on your local drive.

Download Microsoft Terminal classic app

If you are getting the 0x80073CFD error in Windows 10, try to install updates or use an earlier version of Microsoft.WindowsTerminal.

You can also download the latest version of the Microsoft.WindowsTerminal package and install it using the WinGet package manager:

winget install --id=Microsoft.WindowsTerminal -e

winget install Microsoft.WindowsTerminal

Or with chocolatey:

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install microsoft-windows-terminal

It is possible to install an older version of the package:
choco install -y microsoft-windows-terminal --version 1.12.10732.0

Here’s an error you’ll see when installing the package via choco on Windows Server 2019:

ERROR: This package requires at least Windows 10 version 1903/OS build 18362.x.
The install of microsoft-windows-terminal was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\microsoft-windows-terminal\tools\chocolateyInstall.ps1'.

microsoft-windows-terminal - This package requires at least Windows 10 version 1903/OS build 18362

Finally, to run Windows Terminal, run the command:

wt.exe

Run WIndows Teminal wt.exe

2 comments
7
Facebook Twitter Google + Pinterest
Windows 10Windows Server 2016Windows Server 2019
previous post
Create a No-Reply Email Address in Exchange Server/Microsoft 365
next post
Enable All CPU Cores on Windows 10 and 11

Related Reading

How to Restore Deleted EFI System Partition in...

March 11, 2024

How to Allow Multiple RDP Sessions on Windows...

March 15, 2024

How to Run Program without Admin Privileges and...

June 8, 2023

Wi-Fi (Internet) Disconnects After Sleep or Hibernation on...

March 15, 2024

How to Install Remote Server Administration Tools (RSAT)...

March 17, 2024

Refresh AD Groups Membership without Reboot/Logoff

March 15, 2024

Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows

March 17, 2024

How to Delete Old User Profiles in Windows

March 15, 2024

2 comments

Jahongir November 29, 2023 - 3:16 pm

hammasi uchun rahmat
thanks for everything

Reply
Jeff May 24, 2025 - 8:50 am

Way too much work for having a terminal that can allow copy paste text ! MS is screwing user up more and more ! I consider to go to linux, there is no stupid limitations what so ever ! Nova day we have to code god damn win11 in order to get functionality back that has been in previous win OS ? If there is no simple solution for that i pass ! Can MS be more stupid , for sure just wait and see ! Turning it in to Trump OS !

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Repair EFI/GPT Bootloader on Windows 10 or 11
  • How to Restore Deleted EFI System Partition in Windows
  • Network Computers are not Showing Up in Windows 10/11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top