Last active
December 22, 2020 05:09
-
-
Save oscartbeaumont/465a848547f6f8b441a097865cddfcae to your computer and use it in GitHub Desktop.
Powershell reconfigure Winget to support Microsoft Store applications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
powershell -Command "$settings = Get-Content '$env:LOCALAPPDATA\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json' -raw | ConvertFrom-Json; $settings.experimentalFeatures.experimentalMSStore = true; $settings | ConvertTo-Json -depth 32 | Set-Content '$env:LOCALAPPDATA\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json'" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment