Skip to content

Instantly share code, notes, and snippets.

@oscartbeaumont
Last active December 22, 2020 05:09
Show Gist options
  • Save oscartbeaumont/465a848547f6f8b441a097865cddfcae to your computer and use it in GitHub Desktop.
Save oscartbeaumont/465a848547f6f8b441a097865cddfcae to your computer and use it in GitHub Desktop.
Powershell reconfigure Winget to support Microsoft Store applications
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