Back to Winget Cli

import Command

doc/windows/package-manager/winget/import.md

1.28.2402.6 KB
Original Source

import command (winget)

The import command of the winget tool imports a JSON file of apps to install. The import command combined with the export command allows you to batch install applications on your PC.

The import command is often used to share your developer environment or build up your PC image with your favorite apps.

Usage

winget import [-i] <import-file> [<options>]

Arguments

The following arguments are available.

ArgumentDescription
-i, --import-fileJSON file describing the packages to install

Options

The options allow you to customize the import experience to meet your needs.

OptionDescription
--ignore-unavailableSuppresses errors if the app requested is unavailable
--ignore-versionsIgnores versions specified in the JSON file and installs the latest available version
--no-upgradeSkips upgrade if an installed version already exists
--accept-package-agreementsAccept all license agreements for packages
--accept-source-agreementsAccept all source agreements during source operations
-?, --helpShows help about the selected command
--waitPrompts the user to press any key before exiting
--logs, --open-logsOpen the default logs location
--verbose, --verbose-logsEnables verbose logging for winget
--disable-interactivityDisable interactive prompts

JSON Schema

The driving force behind the import command is the JSON file. You can see the schema for the JSON file.

The JSON file includes the following hierarchy:

EntryDescription
SourcesThe sources application manifests come from.
PackagesThe collection of packages to install.
PackageIdentifierThe Windows Package Manager package identifier used to specify the package.
Version[optional] The specific version of the package to install.

Importing files

When the Windows Package Manager imports the JSON file, it attempts to install the specified applications in a serial fashion. If the application is not available or the application is already installed, it will notify the user of that case.

You will notice in the example above, Microsoft.VisualStudioCode and JanDeDobbeleer.OhMyPosh were already installed. Therefore the import command skipped the installation.