Remove and Replace all Windows 10 Apps


  1. Posts : 46
    64-bit 10240 10 Pro
       #1

    Remove and Replace all Windows 10 Apps


    This works as I have tried it.

    Just open Windows Power Shell and run it as an Admin then enter one or all of the entries below except the last one:

    Code:
    Get-AppxPackage *3dbuilder* | Remove-AppxPackage
    Get-AppxPackage *windowsalarms* | Remove-AppxPackage
    Get-AppxPackage *windowscalculator* | Remove-AppxPackage
    Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
    Get-AppxPackage *windowscamera* | Remove-AppxPackage
    Get-AppxPackage *officehub* | Remove-AppxPackage
    Get-AppxPackage *skypeapp* | Remove-AppxPackage
    Get-AppxPackage *getstarted* | Remove-AppxPackage
    Get-AppxPackage *zunemusic* | Remove-AppxPackage
    Get-AppxPackage *windowsmaps* | Remove-AppxPackage
    Get-AppxPackage *solitairecollection* | Remove-AppxPackage
    Get-AppxPackage *bingfinance* | Remove-AppxPackage
    Get-AppxPackage *zunevideo* | Remove-AppxPackage
    Get-AppxPackage *bingnews* | Remove-AppxPackage
    Get-AppxPackage *onenote* | Remove-AppxPackage
    Get-AppxPackage *people* | Remove-AppxPackage
    Get-AppxPackage *windowsphone* | Remove-AppxPackage
    Get-AppxPackage *photos* | Remove-AppxPackage
    Get-AppxPackage *bingsports* | Remove-AppxPackage
    Get-AppxPackage *soundrecorder* | Remove-AppxPackage
    Get-AppxPackage *bingweather* | Remove-AppxPackage
    Get-AppxPackage *xboxapp* | Remove-AppxPackage
    
    How to Reinstall All Built-in Apps
    
    Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -
    DisableDevelopmentMode -Register
    “$($_.InstallLocation)\AppXManifest.xml”}
    You can do one at a time or pick the one you want to remover or all at once.

    Make a Restore Point First.


    attached is a rar of the document

    remove apps.rar


    The Source is HERE

      My Computer


  2. Posts : 73
    Windows
       #2

    Rather than create a blacklist, I think it's better to create a whitelist and use these 2 commands instead:
    Code:
    Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Microsoft.WindowsStore*"} | where-object {$_.name -notlike "*Microsoft.Appconnector*"} | Remove-AppxPackage
    
    Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | where-object {$_.packagename -notlike "*Microsoft.Appconnector*"} | Remove-AppxProvisionedPackage -online
      My Computer


  3. Posts : 46
    64-bit 10240 10 Pro
    Thread Starter
       #3

    nosecureboot said:
    Rather than create a blacklist, I think it's better to create a whitelist and use these 2 commands instead:
    Code:
    Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Microsoft.WindowsStore*"} | where-object {$_.name -notlike "*Microsoft.Appconnector*"} | Remove-AppxPackage
    
    Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | where-object {$_.packagename -notlike "*Microsoft.Appconnector*"} | Remove-AppxProvisionedPackage -online
    Then we disagree . I know the OP works.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 17:48.
Find Us




Windows 10 Forums