How to Update Programs Easily Using Winget on Windows

Listen to this Post

You Should Know:

Winget is a powerful package manager for Windows that allows users to manage and update software efficiently. Below are the steps and commands to use Winget effectively:

1. Install Winget:

  • If you are using Windows 11 or the latest versions of Windows 10, Winget is already installed. For older versions, you can install it via the Microsoft Store by downloading the App Installer.

2. List Installed Programs:

  • Open Command Prompt (CMD) or Windows Terminal.
  • Use the command:
    winget list
    
  • This will display all the installed programs on your system.

3. Check for Available Updates:

  • To see which programs have updates available, use:
    winget upgrade
    

4. Update All Programs:

  • To update all programs at once, run:
    winget upgrade --all
    

5. Silent Updates:

  • If you want to update programs without any prompts, use:
    winget upgrade --silent
    

6. Update a Specific Program:

  • To update a specific program, you need its ID. First, list the programs to find the ID:
    winget list
    
  • Then, update the specific program using:
    winget upgrade <Program ID>
    

Official Documentation:

For more detailed information, refer to the official Winget documentation: Winget Documentation

What Undercode Say:

Winget is a game-changer for Windows users, simplifying the process of managing and updating software. By using the commands provided, you can ensure that your programs are always up-to-date, enhancing both security and performance. Additionally, integrating Winget into your workflow can save time and reduce the hassle of manual updates. For those who frequently work with Linux, you might find similarities between Winget and package managers like `apt` or yum. Here are some additional commands that might be useful:

  • Linux Equivalent for Listing Installed Packages:
    dpkg --list
    
  • Linux Equivalent for Updating All Packages:
    sudo apt update && sudo apt upgrade -y
    
  • Windows Command to Check System Information:
    systeminfo
    
  • Windows Command to Check Network Configuration:
    ipconfig
    

By mastering these commands, you can streamline your system management tasks across both Windows and Linux environments.

References:

Reported By: Robson Martins – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image