Windows 10

See which apps you can install with Winget commands

A look at how you can See which apps you can install with Winget commands including searching, sorting by name, filtering, and installing more than one app

The new Windows Package Manager along with winget was announced at the Build 2020 conference. The tool is now available using the App Install Microsoft Store application on Windows 10 Preview builds. I love the direction Microsoft is going in the past few years. They are embracing rather than shunning Linux ideologies and technologies. Linux admins have long been able to taunt Windows administrators with the ease of which they could install, manage, uninstall, and configure applications in their Linux environments. With the new Winget tool, the playing field is greatly leveled now that Windows administrators have the ability to install applications from the command line using the Winget tool. Let’s take a look and see which apps you can install with winget commands.

Working with Winget

As you know, currently, you have to be running a Windows 10 preview build to use the winget command line package manager for installing software.

Winget is the client interface to the Windows Package Manager service that is newly introduced as part of the App Installer tool from the Microsoft Store in the preview builds.

It is super easy to use. After you install the App Installer software, you can simply type winget in either a PowerShell or command prompt terminal.

See which apps you can install with Winget

How do you know which apps you can install with winget? This is found by using the search option with the winget command line.

Viewing-the-available-winget-command-line-options
Viewing the available winget command line options

As you notice the search option allows you to find and show basic info of apps. What happens when you simply type winget search? When you type this, you will get a table view return of the following:

  • Name
  • Id
  • Version
Typing-winget-search-displays-all-applications-that-can-be-installed-with-winget
Typing winget search displays all applications that can be installed with winget

However, as you can see, the names are not ordered in a way that is easy to find what you are looking for. To more easily see the entire list of software you can install with winget, you can use the following command:

  • winget search | sort
Sorting-the-winget-search-results-return
Sorting the winget search results return

What if you want to find software that contains a certain word? Maybe you are not sure of the exact name or how it is listed in the Windows Package Manager service. Interestingly, the winget command line does not like wildcards I found. However, they seem to be implied to some degree.

To find all software containing a certain word, you can use the following:

  • winget search <your word> | sort

As you can see below, I am searching for all software packages available to winget that contain the word Note.

Searching-for-software-containing-specific-words-with-winget
Searching for software containing specific words with winget

Filtering your results down further

As you notice above, when we search for a keyword such as Note, it will return all applications that may not have “note” in the name, but may have it in the Id or Tag field. This may still be too many returned results to see which apps you can install with winget. Maybe you know the software you are looking for has “Note” in the name. How can we filter it down even further?

There are further search query filters that allow you to further limit the returned results.

Using-winget-search-queries-to-further-filter-results
Using winget search queries to further filter results

As you can see below, with the filter command:

  • winget search –name <word>

You get the returned results requiring that word is found in the Name field of the results.

With-the-winget-filter-queries-you-can-further-filter-results-of-returned-software
With the winget filter queries you can further filter results of returned software

This provides a great way to hone in on which software or application you want to install on your Windows 10 machine.

Install multiple applications at once with Winget

Can you install multiple applications at once with winget? You sure can. With PowerShell, this is made easy by the simple ability to run multiple commands on one line.

You can easily do something like this to install multiple applications using winget.

  • winget install <first application> ; winget install <second application>
Installing-multiple-applications-at-once-with-Winget
Installing multiple applications at once with Winget

Wrapping Up

You can easily see which apps you can install with winget commands using the search functionality that is already built into the tool. Microsoft has also built-in some really good filtering capabilities that allow you to further filter down the results in case you don’t know the exact name of the software but know part of it.

This allows you to filter based on results that are only in the “Name” field as an example. Additionally, using the built-in functionality of PowerShell, you can also easily install more than one application at the same time using winget.

For those who are building a development or IT admin workstation, the winget tool is going to be a massive time saver when compared to manually installing these little applications that we all know and use on our administrative/development workstations.

Subscribe to VirtualizationHowto via Email 🔔

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Brandon Lee

Brandon Lee is the Senior Writer, Engineer and owner at Virtualizationhowto.com and has over two decades of experience in Information Technology. Having worked for numerous Fortune 500 companies as well as in various industries, Brandon has extensive experience in various IT segments and is a strong advocate for open source technologies. Brandon holds many industry certifications, loves the outdoors and spending time with family.

Related Articles

2 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.