> ## 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.

# Installing software with Windows Package Manager
- URL: https://www.techielass.com/installing-software-with-windows-package-manager/
- Published: 2021-06-22T06:00:00.000Z
- Updated: 2022-06-16T15:07:50.000Z
- Description: Join me as I look at Windows Package Manager (WinGet) to install software.
- Author: Sarah Lean
- Tags: Automation, WinGet, PowerShell

If you've followed me for a while you'll know that I am fan of [Chocolatey](https://community.chocolatey.org/?ref=techielass.com), I use it to help install packages in bulk or keep them update to without much faff. Whenever I share my love for Chocolatey people ALWAYS ask why I don't use Windows Package Manager. I recently [installed Windows Package Manager](https://www.techielass.com/how-to-install-winget-windows-package-manager/) and I want to have a look at if it can replace my [Chocolatey script I have for when I rebuild my laptop](https://www.techielass.com/rebuilding-my-laptop/). 

## Install packages with Windows Package Manager

Before I look at whether or not Windows Package Manager can replace my Chocolatey script let's take a look at how you install packages with Windows Package Manager. 

If you want to find a package to install you can use the command

***winget search*** 

Once you find the package you want to install, you can then install it with the command: *winget install*. So for example if I wanted to install the [Notepad++](https://notepad-plus-plus.org/?ref=techielass.com) application I would use the command

***winget install notepad++***

![Installing Notepad++ with WinGet](https://storage.ghost.io/c/08/96/08960c71-63a2-449b-91b1-8d4628166dd2/content/images/2021/05/wingetinstall.PNG)

Installing Notepad++ with WinGet

## Can Windows Package Manager replace my Chocolatey script?

I love my Chocolatey script as it can help me get my laptop back up to speed after a rebuild. It helps me install a bunch of packages, Git, Azure Storage Explorer, AzCopy, Visual Studio Code, Putty, Spotify, Microsoft Windows Terminal, Jabra Direct, VLC, Audacity, PowerToys and WhatsApp. 

Having to manually install each of those apps would be really time consuming! lol 

So let's go through that list and see if they are available within WinGet:

- Git ✔️
- Azure Storage Explorer ✔️
- AzCopy ❌
- Visual Studio Code ✔️
- Putty ✔️
- Spotify ✔️
- Microsoft Windows Terminal ✔️
- Jabra Direct ✔️
- VLC ✔️
- Audacity ✔️
- PowerToys ✔️
- WhatsApp ✔️

The list looks positive! I can install all but one of the packages. And if you want to install those packages using Windows Package Manager you can via this [script](https://gist.github.com/weeyin83/cf0757eee969c1a32fc1a301ed3c8d51?ref=techielass.com). 

## Conclusion

To be honest, I'm torn. It looks like Windows Package Manager can the things I like about Chocolately. So I'm torn, I think they are both great at helping to install packages quickly and easily as well as keeping them up to date. Be sure to stay tuned for more blogs on Windows Package Manager as I explore it more! 😊