Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hxtree/0e014c752190f835e37f46985281490e to your computer and use it in GitHub Desktop.
Save hxtree/0e014c752190f835e37f46985281490e to your computer and use it in GitHub Desktop.
Windows Terminal Install w/o Windows Store

How to install Windows Terminal Without Windows Store

Some AD policies may prohibit use and installation of the Windows Store. This is troublesome for installing the Windows Terminal, which is helpful for using multi command prompt tabs.

  1. Download Winget CLI Check for the latest applicable release of Winget CLI https://github.com/microsoft/winget-cli

Open a Powershell terminal in Admin Mode.

Invoke-WebRequest -Uri "https://github.com/microsoft/winget-cli/releases/download/v1.2.10271/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" -OutFile "winget.msixbundle"
  1. Install Winget
Add-AppxPackage winget.msixbundle
  1. Use Winget to Install Windows Terminal
winget install --id=Microsoft.WindowsTerminal -e

To open new panes press: ALT + CTRL + +

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment