The Windows Package Manager 1.11.350-preview is a preview build of WinGet, providing experimental features including DSC v3 processing, configuration export, and font support. The support for 32-bit ARM has been discontinued, while compatibility with Microsoft Desired State Configuration, configuration export, and font management through winget settings has been introduced. Changes include aligning UndockedRegFreeWinRT with the same vcpkg_installed directory, upgrading to a more recent version of libyaml, incorporating the DSCv3 admin settings resource, resolving issues with debug builds in the latest VS version, and introducing the ReleaseStatic configuration to the WinGetServer project.
Windows Package Manager 1.11.350-preview
This is a preview build of WinGet for those interested in trying out upcoming features and fixes. While it has had some use and should be free of major issues, it may have bugs or usability problems. If you find any, please help us out by filing an issue.
New in v1.11
- Dropped support for running on 32-bit ARM
Experimental Features
- Experimental support for DSC v3 processing
- Experimental support for Configuration Export
- Experimental support for Fonts
Experimental support for DSC v3 processingThe following snippet enables experimental support for Microsoft Desired State Configuration.{ "$schema" "https://aka.ms/winget-settings.schema.json", "experimentalFeatures": { "dsc3": true } }Experimental support for Configuration ExportThe following snippet enables experimental support for exporting the configuration of the current device. This includes Windows Settings, packages from configured WinGet sources, and package settings from DSC v3 enabled packages.{ "$schema" "https://aka.ms/winget-settings.schema.json", "experimentalFeatures": { "configureExport": true } }Experimental support for FontsThe following snippet enables experimental support for fonts viawinget settings
. Thewinget font list
command will list installed font families and the number of installed font faces.{ "$schema" "https://aka.ms/winget-settings.schema.json", "experimentalFeatures": { "fonts": true } }What's Changed
- Make UndockedRegFreeWinRT use same vcpkg_installed directory by @florelis in #5454
- Use more recent version for libyaml by @florelis in #5455
- DSCv3 admin settings resource by @JohnMcPMS in #5458
- Fix debug build with latest VS version by @yao-msft in #5461
- Add ReleaseStatic configuration to WinGetServer project by @florelis in #5477
Full Changelog: v1.11.320-preview...v1.11.350-preview
Release Windows Package Manager 1.11.350-preview · microsoft/winget-cli