Win 10 Th 2 Automatically Reinstalls All Previously-Removed Apps

Page 8 of 8 FirstFirst ... 678

  1. Posts : 2,832
    Windows 10 Pro X64
       #70

    Hi,

    I'm not usually on Microsoft's side but in this one I don't see how it can behave differently. The installer has to install everything it is supposed to install. If it's already there, replace it. If it's missing, put it back.
    Bottom line being, the user has once more no choice but to accept whatever MS thinks is best for them, not us.

    Cheer,
      My Computers


  2. Posts : 1,811
    W7 Ultimate SP1 (64 bit), LM 19.2 MATE (64 bit), W10 Home 1703 (64 bit), W10 Pro 1703 (64 bit) VM
       #71

    Mystery Download


    BunnyJ said:
    It's not like they're taking up much space or going to suddenly activate themselves.
    Last week whilst I was waiting for TH2 to appear in my Windows Update list, my W10 downloaded 300 MB of data for no apparent reason (i.e. there were no updates listed in Settings).

    I assume it was App related as I've never seen App Updates in the Update section.
    TairikuOkami said:
    They take bandwidth usage (data), being regularly updated, not to mention CPU usage and such, ...

    AllenChicago said:
    Lack of space isn't the issue. It's the potential for 3rd party apps to activate and "call home" to summon bad relatives to my PC that concerns me. IMO, deleting unneeded "stuff" is simply removing potential threats, since P.C.'s are always connected to the outside world.
    Agreed.

    Reducing the Attack Surface is always a good idea.
    For example never installing Flash or Java on a PC should make it much more resistant to malware.
      My Computer


  3. Posts : 3
    Windows 10
       #72

    lx07. Thank you very much for this routine. It saves so much time.

    lx07 said:
    Easy to automate if you want to (I do this to save space as I have very small ssd)
    Code:
    $apps=@(     
        "9E2F88E3.Twitter"
        "ClearChannelRadioDigital.iHeartRadio"
        "Flipboard.Flipboard"
        "king.com.CandyCrushSodaSaga"
        "Microsoft.3DBuilder"
        #"Microsoft.Appconnector"
        "Microsoft.BingFinance"
        "Microsoft.BingNews"
        "Microsoft.BingSports"
        "Microsoft.BingWeather"
        "Microsoft.CommsPhone"
        "Microsoft.Getstarted"
        #"Microsoft.Messaging"
        "Microsoft.MicrosoftOfficeHub"
        "Microsoft.MicrosoftSolitaireCollection"
        "Microsoft.Office.OneNote"
        "Microsoft.Office.Sway"
        "Microsoft.People"
        "Microsoft.SkypeApp"
        "Microsoft.Windows.Phone"
        "Microsoft.Windows.Photos"
        "Microsoft.WindowsAlarms"
        #"Microsoft.WindowsCalculator"
        "Microsoft.WindowsCamera"
        "Microsoft.WindowsMaps"
        "Microsoft.WindowsPhone"
        "Microsoft.WindowsSoundRecorder"
        #"Microsoft.WindowsStore"
        "Microsoft.XboxApp"
        "Microsoft.ZuneMusic"
        "Microsoft.ZuneVideo"
        #"microsoft.windowscommunicationsapps"
        "Microsoft.MinecraftUWP"
        "ShazamEntertainmentLtd.Shazam"        
    )
    
    foreach ($app in $apps) {    
        Get-AppxPackage -Name $app -AllUsers | Remove-AppxPackage
        Get-AppXProvisionedPackage -Online | where DisplayName -EQ $app | Remove-AppxProvisionedPackage -Online
                
        $appPath="$Env:LOCALAPPDATA\Packages\$app*"
        Remove-Item $appPath -Recurse -Force -ErrorAction 0
    }
      My Computer


  4. Posts : 1,546
    Windows 10 Pro x64 RS 10586.586
    Thread Starter
       #73

    Update - Threshold 2 changed default apps to the original settings


    Windows 10 Users Upset About Microsoft Resetting Default Apps Over and Over Again
    Threshold 2 changed default apps to the original Settings


    Some of the Windows 10 Threshold 2 users who installed the latest cumulative update claimed it reset their default apps, configuring apps such as Edge and Groove as the one choice for browsing the web and listening to music.

    This isn’t the first time this is happening, and Threshold 2 itself did the same thing, while other early Windows 10 adopters claimed similar changes had been made by other cumulative updates too.

    But enough is enough, more and more users say, and complaints posted in the Windows 10 Feedback app pretty much speak for themselves, with hundreds of users voting for them to show Microsoft that updates for the new operating system should not reset default apps.

    “Please STOP changing my default programs and apps with every upgrade. If I want to use Adobe instead of Edge, that should be MY CHOICE NOT YOURS. This is still MY computer,” one such suggestion that has more than 160 votes in 2 weeks reads.
    For example, prompts are now displayed whenever users try to change default apps, with messages specifically supposed to convince them to take them for a spin.
    Read more: http://news.softpedia.com/news/windo...n-496747.shtml
      My Computer


  5. Posts : 39
    Windows 10 - 64 - home
       #74

    Sprite said:
    lx07. Thank you very much for this routine. It saves so much time.
    i also found that if you use classic shell
    you can uninstall all of these
    just by right clicking...

    some of these you can't... like this...

    Win 10 Th 2 Automatically Reinstalls All Previously-Removed Apps-angela-1995-edit3.jpg

    but it looks nice just to see it...

    you also get a nice start menu too...
      My Computer


  6. Posts : 7
    Win7Pro,Linux
       #75

    lx07 said:
    Easy to automate if you want to (I do this to save space as I have very small ssd)
    Code:
    $apps=@(     
        "9E2F88E3.Twitter"
        "ClearChannelRadioDigital.iHeartRadio"
        "Flipboard.Flipboard"
        "king.com.CandyCrushSodaSaga"
        "Microsoft.3DBuilder"
        #"Microsoft.Appconnector"
        "Microsoft.BingFinance"
        "Microsoft.BingNews"
        "Microsoft.BingSports"
        "Microsoft.BingWeather"
        "Microsoft.CommsPhone"
        "Microsoft.Getstarted"
        #"Microsoft.Messaging"
        "Microsoft.MicrosoftOfficeHub"
        "Microsoft.MicrosoftSolitaireCollection"
        "Microsoft.Office.OneNote"
        "Microsoft.Office.Sway"
        "Microsoft.People"
        "Microsoft.SkypeApp"
        "Microsoft.Windows.Phone"
        "Microsoft.Windows.Photos"
        "Microsoft.WindowsAlarms"
        #"Microsoft.WindowsCalculator"
        "Microsoft.WindowsCamera"
        "Microsoft.WindowsMaps"
        "Microsoft.WindowsPhone"
        "Microsoft.WindowsSoundRecorder"
        #"Microsoft.WindowsStore"
        "Microsoft.XboxApp"
        "Microsoft.ZuneMusic"
        "Microsoft.ZuneVideo"
        #"microsoft.windowscommunicationsapps"
        "Microsoft.MinecraftUWP"
        "ShazamEntertainmentLtd.Shazam"        
    )
    
    foreach ($app in $apps) {    
        Get-AppxPackage -Name $app -AllUsers | Remove-AppxPackage
        Get-AppXProvisionedPackage -Online | where DisplayName -EQ $app | Remove-AppxProvisionedPackage -Online
                
        $appPath="$Env:LOCALAPPDATA\Packages\$app*"
        Remove-Item $appPath -Recurse -Force -ErrorAction 0
    }
    Sorry to resurrect an old thread but the code you posted was the first that worked any way successfully for me ( although I still cannot get the -allusers parameter to work). I edited the list of apps to remove as applicable. Could I ask:

    1. Some of your apps to remove are prefixed with # - is there a reason for this - is it to comment out the line ?
    2. What does the last two lines do - is it to remove any cached data relating to removed apps ?


    Thanks again for posting this code.
      My Computer


  7. Posts : 353
    Windows 10 Pro
       #76

    Eireannach said:
    Sorry to resurrect an old thread but the code you posted was the first that worked any way successfully for me ( although I still cannot get the -allusers parameter to work). I edited the list of apps to remove as applicable. Could I ask:

    1. Some of your apps to remove are prefixed with # - is there a reason for this - is it to comment out the line ?
    2. What does the last two lines do - is it to remove any cached data relating to removed apps ?


    Thanks again for posting this code.
    Hi,
    Try this it's even easier :)

    http://www.thewindowsclub.com/10appsmanager-windows-10
      My Computer


  8. Posts : 261
    Win 10 Home Single Language, Ver 1809, Build 17763.379
       #77

    zooburner said:
    Thank you for the link! I like the two-way approach, both for removing and replacing. Definitely going to try it!

    Geoff
      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 09:48.
Find Us




Windows 10 Forums