Create your package manifest
If you want to submit a software package to the Windows Package Manager Community Repository, start by creating a package manifest. The manifest is a YAML file that describes the application to be installed.
You may either use the Windows Package Manager Manifest Creator, the YAMLCreate PowerShell script, or you can craft a manifest manually following the instructions below.
Note
See the Manifest FAQ below for more general high-level information explaining manifests, packages, and versions.
Options for Manifest Creation
Using WinGetCreate Utility
You can install the wingetcreate
utility using the command below.
winget install wingetcreate
After installation, you can run wingetcreate new
to create a new package and fill in the prompts. The last option in the WinGetCreate prompts is to submit the manifest to the packages repository. If you choose yes, you will automatically submit your Pull Request (PR) to the Windows Package Manager Community Repository.
Using the YAMLCreate.ps1
To help author manifest files, we have provided a YAMLCreate.ps1 powershell script located in the Tools folder on the Windows Package Manager Community Repository. You can use the script by cloning the repo on your PC and running the script directly from the Tools folder. The script will prompt you for the URL to the installer, then will prompt you to fill in metadata. Similar to using WinGetCreate, this script will offer the option to submit your manifest automatically.
YAML basics
The YAML format was chosen for package manifests because of its relative ease of human readability and consistency with other Microsoft development tools. If you are not familiar with YAML syntax, you can learn the basics at Learn YAML in Y Minutes.
Note
Manifests for Windows Package Manager currently do not support all YAML features. Unsupported YAML features include anchors, complex keys, and sets.
Conventions
These conventions are used in this article:
- To the left of
:
is a literal keyword used in manifest definitions. - To the right of
:
is a data type. The data type can be a primitive type like string or a reference to a rich structure defined elsewhere in this article. - The notation
[
datatype]
indicates an array of the mentioned data type. For example,[ string ]
is an array of strings. - The notation
{
datatype:
datatype}
indicates a mapping of one data type to another. For example,{ string: string }
is a mapping of strings to strings.
Manifest contents
A package manifest consists of required items and optional items that can help improve the customer experience of installing your software. This section provides a brief summary of the required manifest schema and complete manifest schemas with examples of each.
Each field in the manifest file must be Pascal-cased and cannot be duplicated.
For a complete list and descriptions of items in a manifest, see the manifest specification in the Windows Package Manager Community Repository.
Minimal required schema
As specified in the singleton JSON schema, only certain fields are required. The minimal supported YAML file would look like the example below. The singleton format is only valid for packages containing a single installer and a single locale. If more than one installer or locale is provided, the multiple YAML file format and schema must be used.
The partitioning scheme was added to help with GitHub's UX. Folders with thousands of children do not render well in the browser.
PackageIdentifier: # Publisher.package format.
PackageVersion: # Version numbering format.
PackageLocale: # BCP 47 format (e.g. en-US)
Publisher: # The name of the publisher.
PackageName: # The name of the application.
License: # The license of the application.
ShortDescription: # The description of the application.
Installers:
- Architecture: # Enumeration of supported architectures.
InstallerType: # Enumeration of supported installer types (exe, msi, msix, inno, wix, nullsoft, appx).
InstallerUrl: # Path to download installation file.
InstallerSha256: # SHA256 calculated from installer.
ManifestType: # The manifest file type
ManifestVersion: 1.6.0
Multiple manifest files
To provide the best user experience, manifests should contain as much meta-data as possible. In order to separate concerns for validating installers and providing localized metadata, manifests should be split into multiple files. The minimum number of YAML files for this kind of manifest is three. Additional locales should also be provided.
- A version (JSON Schema) file.
- The default locale (JSON Schema) file.
- An installer (JSON Schema) file.
- Additional locale (JSON Schema) files.
The example below shows many optional metadata fields and multiple locales. Note the default locale has more requirements than additional locales. In the show command, any required fields that aren't provided for additional locales will display fields from the default locale.
- Version file example
- Default locale file example
- Additional locale file example
- Installer file example
Path: manifests / m / Microsoft / WindowsTerminal / 1.6.10571.0 / Microsoft.WindowsTerminal.yaml
PackageIdentifier: "Microsoft.WindowsTerminal"
PackageVersion: "1.6.10571.0"
DefaultLocale: "en-US"
ManifestType: "version"
ManifestVersion: "1.6.0"
Note
If your installer is an .exe and it was built using Nullsoft or Inno, you may specify those values instead. When Nullsoft or Inno are specified, the client will automatically set the silent and silent with progress install behaviors for the installer.
Installer switches
You can often figure out what silent Switches
are available for an installer by passing in a -?
to the installer from the command line. Here are some common silent Switches
that can be used for different installer types.
Installer | Command | Documentation |
---|---|---|
MSI | /q |
MSI Command-Line Options |
InstallShield | /s |
InstallShield Command-Line Parameters |
Inno Setup | /SILENT or /VERYSILENT |
Inno Setup documentation |
Nullsoft | /S |
Nullsoft Silent Installers/Uninstallers |
Tips and best practices
- The package identifier must be unique. You cannot have multiple submissions with the same package identifier. Only one pull request per package version is allowed.
- Avoid creating multiple publisher folders. For example, do not create "Contoso Ltd." if there is already a "Contoso" folder.
- All tools must support a silent install. If you have an executable that does not support a silent install, then we cannot provide that tool at this time.
- Provide as many fields as possible. The more meta-data you provide the better the user experience will be. In some cases, the fields may not yet be supported by the Windows Package Manager client (winget.exe). For example, the
AppMoniker
field is optional. However, if you include this field, customers will see results associated with theMoniker
value when performing the search command (for example, vscode for Visual Studio Code). If there is only one app with the specifiedMoniker
value, customers can install your application by specifying the moniker rather than the fully qualified package identifier. - The length of strings in this specification should be limited to 100 characters before a line break.
- The
PackageName
should match the entry made in Add / Remove Programs to help the correlation with manifests to support export, and upgrade. - The
Publisher
should match the entry made in Add / Remove Programs to help the correlation with manifests to support export, and upgrade. - Package installers in MSI format use product codes to uniquely identify applications. The product code for a given version of a package should be included in the manifest to help ensure the best upgrade experience.
- When more than one installer type exists for the specified version of the package, an instance of
InstallerType
can be placed under each of theInstallers
.
Manifest FAQ
What is a manifest?
Manifests are YAML files containing metadata used by the Windows Package Manager to install and upgrade software on the Windows operating system. There are thousands of these files partitioned under the manifests directory in the winget-pkgs repository on GitHub. The Windows Package Manager directory structure had to be partitioned so you don't have to scroll as much in the site when looking for a manifest.
What is a package?
Think of a package as an application or a software program. Windows Package Manager uses a "PackageIdentifier" to represent a unique package. These are generally in the form of Publisher.Package
. Sometimes you might see additional values separated by a second period.
What is a version?
Package versions are associated with a specific release. In some cases you will see a perfectly formed semantic version numbers and in other cases you might see something different. These may be date driven or they might have other characters with some package-specific meaning. The YAML key for a package version is "PackageVersion".
For more information on understanding the directory structure and creating your first manifest, see Authoring Manifests in the winget-pkgs repo on GitHub.
Windows developer