How to install apps on your Windows 11 PC with Windows Package Manager (winget)

Windows 11 users have a streamlined option for downloading applications that bypasses the traditional method of navigating through web browsers. This efficient approach is made possible by the Windows Package Manager, commonly referred to as winget, which allows users to access a vast library of applications directly from the command line.

Getting Started with Winget

For those unfamiliar with winget, it serves as Microsoft’s official command line utility, integrated into Windows 11, modern iterations of Windows 10, and Windows Server 2025. This tool simplifies the management and installation of applications through a centralized interface, enhancing user experience significantly.

To harness the power of winget for downloading apps, follow these straightforward steps:

  • Begin by opening the Command Prompt.
  • Check if winget is installed by executing the command below. If a version number appears, you’re all set. If not, refer to Microsoft’s guide for installation.
    winget --version
  • Search for the application you wish to install. For this example, we’ll use VLC, but feel free to substitute it with any app of your choice. If you prefer, you can also view the app repository through the GUI.
    winget search vlc
  • You may receive a list of applications, which could include multiple versions from different sources, such as winget and the Microsoft Store. To install VLC from winget, identify the exact name and execute the following command:
    winget install "VLC media player"
  • That’s all there is to it! Winget will download the installer and place the app in the default directory specified by its developer, typically within the Program Files or WindowsApps folders. If you wish to change the installation directory, you can modify your command as follows:
    winget install "VLC media player" --location "D:Apps"

Beyond basic installations, winget offers a variety of commands that enhance your app management experience. For instance, you can easily update all your applications at once using winget. Here are some additional commands to consider:

  • To list all installed applications:
    winget list
  • To display detailed information about a specific package or app:
    winget show "VLC media player"
  • To uninstall an application:
    winget uninstall "VLC media player"

We invite you to share your experiences with winget in the comments below, along with any tips you might have for its effective use!

Winsage
How to install apps on your Windows 11 PC with Windows Package Manager (winget)