Advertisement
FleX246

W11_Apps_Uninstall_TerraNBs

Mar 24th, 2022 (edited)
1,183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Entfernt alle Windows 11 Apps außer "Store", "Calc", "Edge", "Notepad", "Terra Clevo Tools" und "Fotos"
  2.  
  3.  
  4. Admin Powershell:
  5. Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*notepad*" -And $_.name -notlike "*store*" -And $_.name -notlike "*calc*" -And $_.name -notlike "*edge*" -And $_.name -notlike "*photos*" -And $_.name -notlike "*clevo*"} | Remove-AppxPackage
  6.  
  7. Get-appxprovisionedpackage -online | where-object {$_.name -notlike "*notepad*" -And $_.name -notlike "*store*" -And $_.name -notlike "*calc*" -And $_.name -notlike "*edge*" -And $_.name -notlike "*photos*" -And $_.name -notlike "*clevo*"} | Remove-AppxProvisionedPackage -online
  8.  
  9.  
  10. User Powershell:
  11. Get-AppxPackage | where-object {$_.name -notlike "*notepad*" -And $_.name -notlike "*store*" -And $_.name -notlike "*calc*" -And $_.name -notlike "*edge*" -And $_.name -notlike "*photos*" -And $_.name -notlike "*clevo*"} | Remove-AppxPackage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement