> ## Content Index
> Fetch the complete content index at: https://www.techielass.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Install Windows Terminal with Windows Package Manager
- URL: https://www.techielass.com/install-windows-terminal-with-windows-package-manager/
- Published: 2021-07-08T14:00:00.000Z
- Updated: 2023-03-03T08:15:09.000Z
- Description: Join me as I look at installing Windows Terminal using Windows Package Manager
- Author: Sarah Lean
- Tags: Windows 10, WinGet

[Windows Terminal ](https://docs.microsoft.com/windows/terminal/?WT.mc%5Fid=modinfra-32887-salean&ref=techielass.com)went generally available in May 2020, and since then, I've seen a lot of people utilise it as their go-to console for day-to-day use. 

And I'm one of those people; having a console that offers me the chance to work in PowerShell, Linux or Azure CLI from one window is great. 

If you haven't already got Windows Terminal installed on your machine, I'd highly recommend you do, and here's my guide to installing it via [Windows Package Manager](https://docs.microsoft.com/windows/package-manager/?WT.mc%5Fid=modinfra-32887-salean&ref=techielass.com). 😉

### Install Windows Package Manager

The first thing you need to ensure you have on your system is Windows Package manager; it's straightforward to install on your Windows 10 machine. Head over to [https://github.com/microsoft/winget-cli/releases](https://github.com/microsoft/winget-cli/releases?ref=techielass.com), and download the latest .appxbundle file,[.appxbundle](https://github.com/microsoft/winget-cli/releases/download/v1.0.11451/Microsoft.DesktopAppInstaller%5F8wekyb3d8bbwe.appxbundle?ref=techielass.com) file and install that on your device. 

Below is a quick video of the process. 

![Installing Windows Package Manager](https://storage.ghost.io/c/08/96/08960c71-63a2-449b-91b1-8d4628166dd2/content/images/2021/06/wingetinstalljune2021.gif)

Installing Windows Package Manager

### Install Windows Terminal

Now that we have Windows Package Manager installed, we want to look at installing Windows Terminal. To do that, we need to open up a PowerShell window and then issue the command: 

```bash
winget search Terminal

```

This will enable the Windows Package Manager to search for all the software in its repository with the word Terminal in its name or metadata. 

We should get a list of options back. 

![Windows Package Manager in action](https://storage.ghost.io/c/08/96/08960c71-63a2-449b-91b1-8d4628166dd2/content/images/2021/06/installwindowsterminal.png)

Windows Package Manager in action

We are looking to install the stable version, but you can see that the Preview version is also available. 

To install the stable version, we need to issue the following command: 

```bash
winget install Microsoft.WindowsTerminal

```

After a few moments, the software will be installed, and we can start using Windows Terminal and [customising ](https://www.techielass.com/customise-windows-terminal/)it!