Advertisement
1RedOne

RemoveWin10Apps

Feb 18th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Get-AppxPackage | select name | Out-GridView -OutputMode Multiple | ForEach-Object `
  2. {
  3. Remove-AppxPackage -Package $_.name -WhatIf
  4. Remove-AppxProvisionedPackage -PackageName $_ -online
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement