Replies: 1 comment 2 replies
-
|
Hey everyone, I had a couple of presentations at Build covering the experimental features for Microsoft Desired State Configuration and WinGet Configuration Export. This is the version of WinGet I used, but there was some manual setup involved: Two experimental features (dsc3 and configureExport) need to be enabled. I was using DSC.exe (the packaged version of the 3.1 preview from the Microsoft Store), and I had to make sure the WinGet resource manifests were available on the path. I covered one way to do this in another comment. If you run |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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
Experimental Features
Experimental support for DSC v3 processing
The 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 Export
The 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 Fonts
The following snippet enables experimental support for fonts via
winget settings. Thewinget font listcommand 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
Full Changelog: v1.11.230-preview...v1.11.320-preview
This discussion was created from the release Windows Package Manager 1.11.320-preview.
Beta Was this translation helpful? Give feedback.
All reactions