Browse Windows Package Manager packages, select what you need, and export them for quick installation.
Package latest update: October 30, 2025 at 00:56 UTC
Overview • Usage • Development • License
Winget Export provides an interface for browsing Windows Package Manager (winget) packages. The package list is updated every day to ensure an access to the latest available packages. You can search through them, select the ones you need, and export them as a JSON file, PowerShell script or as a command line that can be imported directly with winget.
- Search: Type in the search box to find packages (e.g., "PowerToys", "Firefox", "Git")
- Select: Click the checkbox next to packages you want to install
- Reorder: Drag packages in your selection to change the installation order
- Export: Choose to export as JSON file, PowerShell script, or copy the command line to your clipboard
- Import: For JSON exports, use the generated command to install all packages:
winget import --import-file "winget-export-YYYY-MM-DDTHH_MM_SS_sss-00_00.json"
- Serve the folder with an HTTP server:
Then navigate to http://localhost:8080/
python3 -m http.server 8080
The package data is stored in data/index.json and can be updated in two ways:
Local Build:
pnpm run buildAutomated CI:
- The
.github/workflows/update-index.ymlworkflow runs daily and on push to themainbranch - Automatically builds
data/index.jsonand commits changes if the package list has been updated
MIT