Advertisement
omgfrost

Remove all bloatware but store and calc

Mar 19th, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. Source: https://www.askvg.com/guide-how-to-remove-all-built-in-apps-in-windows-10/?__cf_chl_captcha_tk__=2ffd5787f728209b6145c1bb91a65b71346db3d8-1584627860-0-AaAjTngg84SbbdyrkNjTDFVcX1OusYaa67lqYiBg5jeGjzSRey5UXkoC0fzemsBuxDuOwMKcOKSOaWk5iWLh-tCCqAoCa_ftGQCABxs6bxWVqsaB3gTlLeuQyozp0McTNfzKtEE8VDJcWEa34UBQP6_OoQ8LvtvvmpOnYpKLYTmxkkWoWl6PIS89RTLebuVzbTTcvJ27WI_22bg8B1-dHKAXJLNApaft0sCfw7sNcZ-dULVwQw_xKOI7Abx5sn83Q-wAcoAOxfVKiox18Zaa91b9Eqz4pV26pvzAYneKjLYZ7krkpkva6RfsP1K9PTYuJSV_PdnqWBiyYHj6UGoJmmfKLb5FEExjB0R23-Kbl3sicYj49LaSgOgtkJD1dLyBMghXLNnJHF7Kkas2SmS7lranuwcx2xs9wQkCqUnlkJp_
  2.  
  3. Remove all users apps but store and calculator
  4.  
  5. Get-AppxPackage -allusers | where-object {$_.name –notlike "*store*"} | where-object {$_.name –notlike "*calculator*"} | where-object {$_.name –notlike "*Ookla*"} | Remove-AppxPackage
  6. Get-AppxPackage *OneNote* | Remove-AppxPackage
  7. Register app with cmd admin: PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *PackageName*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
  8. Change package name with the name of the package
  9.  
  10. Windows10 Debloater Powershell quick link: iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/debloat'))
  11.  
  12. Debloater custom list: https://github.com/Sycnex/Windows10Debloater/issues/172
  13. script example: Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement