Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Write-Warning "Select AppX Packages to remove..."
  2. Get-AppxPackage | Out-GridView -Title "Select AppX Packages to remove" -PassThru | Remove-AppxPackage
  3.  
  4. Write-Warning "Select AppX Provisioning Packages to remove..."
  5. Get-AppxProvisionedPackage -Online | Out-GridView -Title "Select AppX Provisioned Packages to remove" -PassThru | Remove-AppxProvisionedPackage -Online
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement