All Windows Package Manager manifests in the Microsoft community repository are submitted using YAML syntax. A JSON schema is provided to aid authoring these files in editors, and in the other tooling related to the Windows Package Manager. This document provides detailed information regarding the usage of the YAML keys in the installer file for multi-file manifests.
Note: The 1.1 manifest schema was released with the Windows Package Manager 1.2. Any fields marked Not implemented are not supported in the 1.2 client, but may be supported in a 1.3-preview client.
PackageIdentifier: # The package unique identifier
PackageVersion: # The package version
Channel: # *Not implemented* distribution channel
Installers: # The list of package installers
- Architecture: # The architecture of the installer
InstallerLocale: # Optional locale of the installer
Platform: # Optional installer supported operating system
MinimumOSVersion: # Optional installer minimum operating system version
InstallerType: # The installer type
InstallerUrl: # The installer URL
InstallerSha256: # The SHA256 hash of the installer
SignatureSha256: # Optional SHA256 hash of the MSIX signature
Scope: # Optional installer scope
InstallModes: # Optional installer modes
InstallerSwitches: # Optional installer switches
Silent: # Optional installer switches for silent
SilentWithProgress: # Optional installer switches for silent with progress
Interactive: # Optional installer switches for interactive
InstallLocation: # Optional install location path
Log: # Optional installer log file path
Upgrade: # Optional installer switches for upgrade
Custom: # Optional installer switches for custom behavior
UpgradeBehavior: # Optional upgrade method
Commands: # Optional commands or aliases to run the package
Protocols: # Optional list of protocols supported by the package
FileExtensions: # Optional list of file extensions supported by the package
Dependencies: # *Experimental* list of dependencies required by the package
- ExternalDependencies: # *Not implemented* list of external dependencies
PackageDependencies: # *Experimental* list of package dependencies
WindowsFeatures: # *Not implemented* list of Windows feature dependencies
WindowsLibraries: # *Not implemented* list of Windows library dependencies
PackageFamilyName: # Optional MSIX package family name
Capabilities: # Optional list of MSIX package capabilities
RestrictedCapabilities: # Optional list of MSIX package restricted capabilities
InstallerAbortsTerminal: # *Not implemented* Optional indicator for packages that abort terminal
InstallLocationRequired: # *Not implemented* Optional indicator for packages that require install location
RequireExplicitUpgrade: # Optional indicator for packages that upgrade themselves
ElevationRequirement: # *Not implemented* scope required to install package
UnsupportedOSArchitectures: # Optional architectures the package is not supported on
Markets: # Optional markets the package is allowed to be installed
ExcludedMarkets: # Optional markets the package is not allowed to be installed
InstallerSuccessCodes: # Optional non-zero installer success codes
ExpectedReturnCodes: # Optional non-zero installer return codes
- InstallerReturnCode: # Optional non-zero installer return code
ReturnResponse: # Optional response for an expected return code
ProductCode: # Optional product code of the installer
AppsAndFeaturesEntries: # *Not implemented* Optional entries from the Add and Remove Programs (ARP) table
- DisplayName: # *Not implemented* Optional program name shown in the ARP entry
DisplayVersion: # *Not implemented* Optional version displayed in the ARP entry
Publisher: # *Not implemented* Optional publisher displayed in the ARP entry
ProductCode: # *Not implemented* Optional product code of the installer
UpgradeCode: # *Not implemented* Optional upgrade code of the installer
InstallerType: # *Not implemented* Optional installer type
ReleaseDate: # Optional release date
ManifestType: installer # The manifest type
ManifestVersion: 1.1.0 # The manifest syntax version
Path: manifests/m/Microsoft/WindowsTerminal/1.9.1942/Microsoft.WindowsTerminal.installer.yaml
PackageIdentifier: Microsoft.WindowsTerminal
PackageVersion: 1.9.1942.0
Installers:
- Architecture: x64
InstallerType: msix
InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.9.1942.0/Microsoft.WindowsTerminal_1.9.1942.0_8wekyb3d8bbwe.msixbundle
InstallerSha256: 578D987D58B3CE5F6BF3316C6A5AECE8EB6B94DBCD1963413D81CB313D6C28D5
ManifestType: installer
ManifestVersion: 1.1.0
Path: manifests/m/Microsoft/WindowsTerminal/1.9.1942/Microsoft.WindowsTerminal.installer.yaml
PackageIdentifier: Microsoft.WindowsTerminal
PackageVersion: 1.9.1942.0
Platform:
- Windows.Desktop
MinimumOSVersion: 10.0.18362.0
InstallerType: msix
InstallModes:
- silent
PackageFamilyName: Microsoft.WindowsTerminal_8wekyb3d8bbwe
Installers:
- Architecture: x64
InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.9.1942.0/Microsoft.WindowsTerminal_1.9.1942.0_8wekyb3d8bbwe.msixbundle
InstallerSha256: 578D987D58B3CE5F6BF3316C6A5AECE8EB6B94DBCD1963413D81CB313D6C28D5
SignatureSha256: 889A0BA756E74386F95A37F6A813C6D383DC21349A2D18E2B192D4E0E7F80659
- Architecture: arm64
InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.9.1942.0/Microsoft.WindowsTerminal_1.9.1942.0_8wekyb3d8bbwe.msixbundle
InstallerSha256: 578D987D58B3CE5F6BF3316C6A5AECE8EB6B94DBCD1963413D81CB313D6C28D5
SignatureSha256: 889A0BA756E74386F95A37F6A813C6D383DC21349A2D18E2B192D4E0E7F80659
- Architecture: x86
InstallerUrl: https://github.com/microsoft/terminal/releases/download/v1.9.1942.0/Microsoft.WindowsTerminal_1.9.1942.0_8wekyb3d8bbwe.msixbundle
InstallerSha256: 578D987D58B3CE5F6BF3316C6A5AECE8EB6B94DBCD1963413D81CB313D6C28D5
SignatureSha256: 889A0BA756E74386F95A37F6A813C6D383DC21349A2D18E2B192D4E0E7F80659
ManifestType: installer
ManifestVersion: 1.1.0
PackageIdentifier - The package unique identifier
Required Field
This key is the unique identifier for a given package. This value is generally in the form of Publisher.Package
. It is case sensitive, and this value must match the folder structure under the partition directory in GitHub.
PackageVersion - The package version
Required Field
This key represents the version of the package. It is related to the specific release this manifests targets. In some cases you will see a perfectly formed semantic version number, 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 for example.
The Windows Package Manager client uses this version to determine if an upgrade for a package is available. In some cases, packages may be released with a marketing driven version, and that causes trouble with the winget upgrade
command.
Note: The current best practice is to use the value reported in Add / Remove Programs when this version of the package is installed. In some cases, packages do not report a version resulting in an upgrade loop or other unwanted behavior. This practice may seem contrary to using semantic versioning, but it provides the best end to end experience for customers. It will take time for publishers and ISVs to migrate to semantic versioning, and some may intentionally choose to preserve other versioning schemes. In these cases, it is best practice to include the "AppsAndFeaturesEntries" section for each installer.
Channel - The distribution channel
Optional Field
This key represents the distribution channel for a package. Examples may include "stable" or "beta".
Note: This key is included for future use. The Windows Package Manager currently does not have any behavior associated with this key. The intent behind this key is to help disambiguate the different channels for packages lacking support for side by side installation. Some packages support having more than one package channel available on a system simultaneously; in this case it is better to use unique packages rather than channels. This key is intended to ensure the proper channel for a package is used during install and upgrade scenarios.
Installers - Package installer
Required Field
The key represents an installer for a package.
Note: Many of the keys related to installers may either be at the root level of the manifest, or included in an installer. Any values provided at the root level and not specified in an installer will be inherited.
Architecture - The installer target architecture
Required Field
This key represents the hardware architecture targeted by the installer. The Windows Package Manager will attempt to determine the best architecture to use. If emulation is available and the native hardware architecture does not have a supported installer, the emulated architecture may be used.
InstallerLocale - Locale for package installer
Optional Field
This key represents the locale for an installer not the package meta-data. Some installers are compiled with locale or language specific properties. If this key is present, it is used to represent the package locale for an installer.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
Platform - The installer supported operating system
Optional Field
This key represents the Windows platform targeted by the installer. The Windows Package Manager currently supports "Windows.Desktop" and "Windows.Universal". The Windows Package Manager client currently has no behavior associated with this property. It was added for future looking scenarios.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
MinimumOSVersion - The installer minimum operating system version
Optional Field
This key represents the minimum version of the Windows operating system supported by the package.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
InstallerType - Enumeration of supported installer types.
Required Field
This key represents the installer type for the package. The Windows Package Manager supports MSIX, MSI, and executable installers. Some well known formats (Inno, Nullsoft, WiX, and Burn) provide standard sets of installer switches to provide different installer experiences.
Note: The Windows Package Manager defaults to the install mode providing install progress. A best practice is to determine if one of the supported installer technologies was used to build an installer with the .exe file extension. The Windows Package Manager Manifest Creator tool can be used to determine if one of the known tools was used to build an installer with the .exe file extension.
Note: The Windows Package Manager 1.2 does not support loose executables with the .exe or .com file extension directly. Compressed files containing installers, loose executables, and Progressive Web Applications (PWAs) are also not supported.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
InstallerUrl - The installer Url
Required Field
This key represents the URL to download the installer.
InstallerSha256 - Sha256 is required. Sha256 of the installer
Required Field
This key represents the SHA 256 hash for the installer. It is used to confirm the installer has not been modified. The Windows Package Manager will compare the hash in the manifest with the calculated hash of the installer after it has been downloaded.
Note: The Windows Package Manager Manifest Creator can be used to determine the SHA 256 of the installer. The
winget hash <pathToInstaller>
command can also be used to determine the SHA 256 of the installer.
SignatureSha256 - SignatureSha256 is recommended for appx or msix. It is the sha256 of signature file inside appx or msix. Could be used during streaming install if applicable
Optional Field
This key represents the signature file (AppxSignature.p7x) inside an MSIX installer. It is used to provide streaming install for MSIX packages.
Note: MSIX installers must be signed to be included in the Microsoft community package repository. If the installer is an MSIX this signature should be included in the manifest. The Windows Package Manager Manifest Creator can be used to determine the signature SHA 256. The
winget hash <pathToInstaller> --msix
command can also be used to determine the signature SHA 256.
Scope - Scope indicates if the installer is per user or per machine
Optional Field
This key represents the scope the package is installed under. The two configurations are "user" and "machine". Some installers support only one of these scopes while others support both via arguments passed to the installer using "InstallerSwitches".
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
InstallModes - List of supported installer modes
Optional Field
This key represents the install modes supported by the installer. The Microsoft community package repository requires a package support "silent" and "silent with progress". The Windows Package Manager also supports "interactive" installers. The Windows Package Manager client does not have any behavior associated with this key.
Note: Some installers will attempt to install missing dependencies. If these dependencies require user interaction, the package will not be allowed into the Microsoft community package repository.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
InstallerSwitches - Switches passed to installers
Optional Field
This key represents the set of switches passed to installers.
Windows Package Manager Community Repository
The Microsoft community repository currently requires support for silent and silent with progress installation. Many custom .exe installers will require the proper switches to meet this requirement. The Windows Package Manager Manifest Creator tool can be used to determine if one of the known tools was used to build an installer with the .exe file extension. In the event the tool is unable to determine the tool used to build the installer, the publisher may have documentation for the proper switches.
Silent - Silent is the value that should be passed to the installer when user chooses a silent or quiet install
Optional Field
This key represents switches passed to the installer to provide a silent install experience. These would be used when the command winget install <package> --silent
is executed.
Note: When the Windows Package Manager installs a package using the "silent" install mode, any custom switches will also be passed to the installer. If a user applies override switches via command line via the Windows Package Manager, none of the switches from the manifest will be passed to the installer.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
SilentWithProgress - SilentWithProgress is the value that should be passed to the installer when user chooses a non-interactive install
Optional Field
This key represents switches passed to the installer to provide a silent with progress install experience. This is intended to allow a progress indication to the user, and the indication may come from an installer UI dialogue, but it must not require user interaction to complete. The Windows Package Manager currently defaults to this install experience.
Note: When the Windows Package Manager installs a package using the "silent with progress" install mode, any custom switches will also be passed to the installer. If a user applies override switches via command line via the Windows Package Manager, none of the switches from the manifest will be passed to the installer.
Interactive - Interactive is the value that should be passed to the installer when user chooses an interactive install
Optional Field
This key represents switches passed to the installer to provide an interactive install experience. This is intended to allow a user to interact with the installer. These would be used when the command winget install <package> --interactive
is executed.
Note: When the Windows Package Manager installs a package using the "interactive" install mode, any custom switches will also be passed to the installer. If a user applies override switches via command line via the Windows Package Manager, none of the switches from the manifest will be passed to the installer.
InstallLocation - InstallLocation is the value passed to the installer for custom install location.
Optional Field
This key represents the path to install the package if the installer supports installing the package in a user configurable location. The <INSTALLPATH> token can be included in the switch value so the Windows Package Manager will replace the token with user provided path.
Log - Log is the value passed to the installer for custom log file path.
Optional Field
This key represents the path logs will be directed to if the installer supports specifying the log path in a user configurable location. The <LOGPATH> token can be included in the switch value so the Windows Package Manager will replace the token with user provided path.
Upgrade - Upgrade is the value that should be passed to the installer when user chooses an upgrade.
Optional Field
This key represents the switches to be passed to the installer during an upgrade. This will happen only if the upgrade behavior is "install".
Note: If a user applies override switches via command line via the Windows Package Manager, none of the switches from the manifest will be passed to the installer.
Custom - Custom switches will be passed directly to the installer by the Windows Package Manager.
Optional Field
This key represents any switches the Windows Package Manager will pass to the installer in addition to "Silent", "SilentWithProgress", and "Interactive".
Note: If a user applies override switches via command line via the Windows Package Manager, none of the switches from the manifest will be passed to the installer.
UpgradeBehavior - The upgrade method
Optional Field
This key represents what the Windows Package Manager should do regarding the currently installed package during a package upgrade. If the package should be uninstalled first, the "uninstallPrevious" value should be specified.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
Commands - List of commands or aliases to run the package
Optional Field
This key represents any commands or aliases used to execute the package after it has been installed.
Note: The Windows Package Manager does not update the path during the install workflow. In those cases, the user may need to restart their shell or terminal before the command will execute the newly installed package. The Windows Package Manager does not support any behavior related to commands or aliases.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
Protocols - List of protocols the package provides a handler for
Optional Field
This key represents any protocols supported by the package. The Windows Package Manager does not support any behavior related to protocols handled by a package.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
FileExtensions - List of file extensions the package could support
Optional Field
This key represents any file extensions supported by the package. The Windows Package Manager does not support any behavior related to the file extensions supported by the package.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
Dependencies - List of dependencies needed to install or execute the package
Optional Field
This key represents any dependencies required to install or run the package.
Note: The Windows Package Manager does not support any behavior related to dependencies.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
ExternalDependencies - List of external package dependencies
Optional Field
This key represents any external dependencies required to install or run the package.
Note: The Windows Package Manager does not support any behavior related to dependencies.
PackageDependencies - List of package dependencies from current source
Optional Field
This key represents any packages from the same source required to install or run the package.
Note: The Windows Package Manager does not support any behavior related to dependencies.
WindowsFeatures - List of Windows feature dependencies
Optional Field
This key represents any Windows features required to install or run the package.
Note: The Windows Package Manager does not support any behavior related to dependencies.
WindowsLibraries - List of Windows library dependencies
Optional Field
This key represents any Windows libraries required to install or run the package.
Note: The Windows Package Manager does not support any behavior related to dependencies.
PackageFamilyName - PackageFamilyName for appx or msix installer. Could be used for correlation of packages across sources
Optional Field
This key represents the package family name specified in an MSIX installer. This value is used to assist with matching packages from a source to the program installed in Windows via Add / Remove Programs for list, and upgrade behavior.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
Capabilities - List of appx or msix installer capabilities
Optional Field
This key represents the capabilities provided by an MSIX package. More information is available for App capability declarations
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
RestrictedCapabilities - List of appx or msix installer restricted capabilities
Optional Field
This key represents the restricted capabilities provided by an MSIX package. More information is available for App capability declarations
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
InstallerAbortsTerminal - Indicator for installers that abort the terminal.
Optional Field
This key represents the behavior associated with installers that abort the terminal. This most often occurs when a user is performing an upgrade of the running terminal.
Note: Windows Terminal no longer causes this to occur as the MSIX install behavior from the Windows Package Manager is deferred registration.
InstallLocationRequired - Indicator for packages requiring an install location to be specified.
Optional Field
This key represents the requirement to have an install location specified. These installers are known to deploy files to the location the installer is executed in.
Note: The behavior associated with this key is not implemented in the Windows Package Manager 1.2 client.
RequireExplicitUpgrade - Indicator for packages that upgrade themselves.
Optional Field
This key identifies packages that upgrade themselves. By default, they are excluded from winget upgrade --all
.
ElevationRequirement - Indicator for elevation requirements when installing or upgrading packages.
Optional Field
This key represents which scope a package is required to be executed under. Some packages require user level execution while others require administrative level execution.
Note: The behavior associated with this key is not implemented in the Windows Package Manager 1.2 client.
UnsupportedOSArchitectures - List of unsupported architectures for a package.
Optional Field
This key represents any architectures a package is known not to be compatible with. Generally, this is associated with emulation modes.
Markets - List of supported markets for a package.
Optional Field
This key represents any markets a package may be installed in.
Note: If a market is listed in both this key and the ExcludedMarkets key, the market will be excluded. Both keys are present to reduce the need to list the larger set of markets.
ExcludedMarkets - List of unsupported markets for a package.
Optional Field
This key represents any markets a package may not be installed in.
Note: If a market is listed in both this key and the Markets key, the market will be excluded. Both keys are present to reduce the need to list the larger set of markets.
InstallerSuccessCodes - List of additional non-zero installer success exit codes other than known default values by the Windows Package Manager.
Optional Field
This key represents any status codes returned by the installer representing a success condition other than zero.
Note: Some return codes indicate a reboot is suggested or required. The Windows Package Manager does not support the reboot behavior currently. Some installers will force a reboot, and the Windows Package Manager does not currently suppress reboot behavior.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
ExpectedReturnCodes - List of additional non-zero installer exit codes other than known default values by the Windows Package Manager.
Optional Field
This key represents any status codes returned by the installer representing a condition other than zero.
Note: Some return codes indicate a reboot is suggested or required. The Windows Package Manager does not support the reboot behavior currently. Some installers will force a reboot, and the Windows Package Manager does not currently suppress reboot behavior.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
InstallerReturnCode - The non-zero installer exit code other than known default values by the Windows Package Manager.
Optional Field
This key represents any status code returned by the installer representing a condition other than zero. MSIX and MSI packages have well known return codes. This is primarily intended for executable installers that have custom or unique return codes that can be mapped to a return response.
ReturnResponse - The return response to be displayed in the event an expected return code is encountered.
Optional Field
This key represents a return response to display when an installer returns an expected return code. MSIX and MSI packages have well known return codes. This is primarily intended for executable installers that have custom or unique return codes that can be mapped to a return response.
Note: An enumerated list of values in the JSON schema must be specified for consistency of user experience.
ProductCode - ProductCode is used for correlation of packages with manifests is configured sources.
Optional Field
This key represents the product code specified in an MSI installer. This value is used to assist with matching packages from a source to the program installed in Windows via Add / Remove Programs for list, and upgrade behavior.
Note: This key may be present in the root of the manifest as the default value for all installer nodes. This key may also be present in an individual installer node as well. If this key is in the manifest root and in an installer node, the value in the installer node will apply.
AppsAndFeaturesEntries - AppsAndFeaturesEntries are used to match installed packages with manifests in configured sources.
Optional Field
This key represents the values reported by Windows Apps & Features. When a package is installed, entries are made into the Windows Registry.
Note: The AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client.
DisplayName - DisplayName is what is displayed in the Control Panel for installed packages.
Optional Field
This key represents the package name as displayed in Windows Apps & Features. It is used to help correlate installed packages with manifests in configured sources.
Note: The AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client.
DisplayVersion - DisplayVersion is the version displayed in the Control Panel for installed packages.
Optional Field
This key represents the package version as displayed in Windows Apps & Features. It is used to help correlate installed packages with manifests in configured sources.
Note: The AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client.
Publisher - Publisher is the value of the package publisher reported in the Windows registry.
Optional Field
This key represents the Publisher reported in the Windows registry. It is used to help correlate installed packages with manifests in configured sources.
Note: The AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client.
ProductCode - ProductCode is used for correlation of packages with manifests in configured sources.
Optional Field
This key represents the product code for a package. It is used to help correlate installed packages with manifests in configured sources.
Note: This key is displayed twice for completeness. As the AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client, the description and usage above is implemented.
UpgradeCode - UpgradeCode is used for correlation of packages with manifests in configured sources.
Optional Field
This key represents the upgrade code for a package. It is used to help correlate installed packages with manifests in configured sources.
Note: The AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client.
InstallerType - Enumeration of supported installer types.
Optional Field
This key represents the installer type for the package. It is used to help correlate installed packages with manifests in configured sources. In some cases, an installer is an .exe based installer, but contains an MSI installer. This key will help the Windows Package Manager understand if upgrading an MSI should be performed when it is contained in an .exe installer.
Note: This key is displayed twice for completeness. As the AppsAndFeatures behavior is not implemented in the Windows Package Manager 1.2 client, the description and usage above is implemented.
ReleaseDate - The Release Date for a package.
Optional Field
This key represents the release date for a package.
ManifestType - The manifest type
Required Field
This key must have the value "installer". The Microsoft community package repository validation pipelines also use this value to determine appropriate validation rules when evaluating this file.
ManifestVersion - The manifest syntax version
Required Field
This key must have the value "1.1.0". The Microsoft community package repository validation pipelines also use this value to determine appropriate validation rules when evaluating this file.