Advertisement
ibi

uninstall metro-apps except win store

ibi
Apr 25th, 2016
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # uninstall all metro/modernUI-apps (not the winstore though)
  2. Get-AppxPackage -AllUsers | where {$_.name –notlike "*store*"} | Remove-AppxPackage
  3. Get-AppxProvisionedPackage –online | where {$_.packagename –notlike "*store*"} | Remove-AppxProvisionedPackage -online
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement