- Windows 11 users can efficiently download and install multiple applications using the Windows Package Manager with a single command.
- For an easier experience, consider the Winstall online tool, which assists in finding apps and generating the necessary command.
Last Updated: November 11, 2025: Microsoft has introduced the Windows Package Manager (winget) to allow users to discover, install, upgrade, and manage applications on Windows 11 (and Windows 10) through command-line interfaces, eliminating manual download and installation steps.
While single app installations via winget are straightforward, installing several applications at once can present challenges due to complex command requirements. In this guide, we will explore three effective methods to use winget for bulk installations on Windows 11, including the Windows Package Manager itself and the non-Microsoft application, Winstall.
The following sections will cover:
- Bulk Install Apps Using Winget
- Bulk Install Apps Using Winstall
- FAQs about Bulk App Installation with Winget
Bulk Install Apps Using Winget
To perform bulk installations using winget on Windows 11, follow these detailed steps:
-
Begin by opening the Start menu.
-
Search for Command Prompt (or PowerShell), right-click on the top result, and select Run as administrator.
-
Use the following command to search for an application in the repository and hit Enter:
winget search "APP NAME"
Ensure to replace “APP NAME” with the actual name of the application to be installed; quotation marks are only necessary if the name includes spaces (e.g., “Google Chrome”).
-
Check the command output to confirm the app ID.
-
Repeat steps 3 and 4 to retrieve IDs for all required applications.
-
Construct the command to install multiple apps, formatted as follows, and press Enter:
winget install --id=App.1. ID -e && winget install --id=App.2. ID -e && winget install --id=App.3. ID -e
Substitute the IDs with those of the apps you intend to install. The “-e” option enforces exact name matching, including case sensitivity. For example:
winget install --id=Microsoft. Edge. Dev -e && winget install --id=Mozilla. Firefox -e && winget install --id=Google. Chrome. Dev -e
Upon completing these steps, the specified applications will be downloaded and installed promptly on your system. You can execute this command to install as many applications as needed.
Stay updated with the latest guides and tips by subscribing to my newsletter.
Subscribe
https://www.youtube.com/watch?v=
Bulk Install Apps Using Winstall
Winstall is a web application created by Mehedi Hassan on GitHub. This tool connects to Microsoft’s app repository and facilitates the selection of multiple applications for installation, automatically generating a script for bulk installation via winget. Note that Winstall is a third-party tool, not developed by Microsoft.
To use Winstall for bulk app installations on Windows 11, follow these instructions:
-
Click the Apps button located in the top-right corner.
-
Press the Plus button to start selecting the applications you wish to install.
-
Utilize the search bar to find and choose additional applications.
-
Click the Generate script button.
-
If required, hit the Batch button located at the top-left.
-
Click the “Copy to clipboard” button.
Quick note: Select the “PowerShell” button to obtain the command for execution in the PowerShell console, or opt for “Widget Import” to download a winget JSON file. Alternatively, download a “.bat” file for a streamlined installation experience. -
Open the Start menu once more.
-
Search for Command Prompt (or PowerShell), right-click the top result, and select the Run as administrator option.
-
Right-click and paste the winget script (Ctrl + V) to initiate the installation process, then press Enter.
For instance, this script installs Atom, VLC, and 1Password:
winget install --id=AgileBits.1Password -e && winget install --id=twinkstar.browser -e && winget install --id=VideoLAN. VLC -e
After completing these steps, the selected applications will automatically download and install on your Windows 11 or Windows 10 device.
FAQs about Bulk Installing Apps with Winget
Below are some of the most frequently asked questions regarding the bulk installation of applications using the Windows Package Manager.
What is winget, and how does it assist in installing multiple apps at once?
The winget tool, or Windows Package Manager, is a CLI utility from Microsoft designed to help users locate, download, and install one or several applications simultaneously. This streamlines the setup process and eliminates the need for extensive online searches for installers.
Can winget facilitate the installation of multiple apps simultaneously?
Absolutely. By leveraging the && operator, you can execute multiple winget commands in a single line, such as: winget install --id=Google. Chrome -e && winget install --id=Mozilla. Firefox -e.
Are there simpler methods to generate a bulk install command?
Yes, utilizing the Winstall web application allows you to visually choose your desired apps. The site will generate a winget command or script that you can simply copy and paste into Command Prompt or PowerShell for bulk installations.
Is it possible to export and import a list of apps for future installations with winget?
Definitely! Use the command winget export -o apps.json to export your currently installed applications, then reactivate them later on another machine using winget import -i apps.json.
Can I bypass confirmation prompts when using winget installs?
Yes, to install apps silently without manual confirmations, simply add the flags --accept-source-agreements and --accept-package-agreements to your command.
Is it safe to utilize Winstall for generating winget commands?
Yes, using Winstall is considered safe; however, it is essential to remember it isn’t a Microsoft product. As an open-source tool, it connects with the official winget repository, so always verify the legitimacy of the applications you choose.
Can winget be employed to update multiple apps collectively?
Yes, you can effortlessly update all installed applications using the command winget upgrade --all.
How does winget compare to traditional installers or other tools like Chocolatey?
Winget is built to integrate seamlessly with Windows and its official app repository, in contrast to Chocolatey, which functions primarily using its own package sources. Given that winget is maintained by Microsoft, it offers heightened security and better integration with Windows management features.
Updated on November 11, 2025: This guide has been refreshed to reflect current processes and ensure accuracy.
Leave a Reply