Skip to content

Instantly share code, notes, and snippets.

@scanbix
Created September 30, 2023 17:08
Show Gist options
  • Save scanbix/9921ca8ee88a7d443e4be027abf91de7 to your computer and use it in GitHub Desktop.
Save scanbix/9921ca8ee88a7d443e4be027abf91de7 to your computer and use it in GitHub Desktop.
Windows 11 cleanup
# Remove the installed package for each user "Disable Widgets in Windows 11 Completely"
Get-AppxPackage -AllUsers | Where-Object {$_.Name -like "*WebExperience*"} | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment