Uninstall Apps in Windows 10  

Page 20 of 66 FirstFirst ... 10181920212230 ... LastLast

  1. Posts : 8
    Linux Mint 17.3 (Rosa ) Cinnamon 64bit
       #190

    Brink said:
    It's normal to get the error in red below from you excerpts above for some apps. It just means that there was an error trying to uninstall that specific app since Windows will not let it be uninstalled.

    This app is part of Windows and cannot be uninstalled on a per-user basis.
    Thanks for the quick response.
    Is it normal for ALL of the AppxPackages listed in RED below?

    As Administrator in PowerShell
    Code:
    PS C:\Users\Administrator> Get-AppxPackage | Select Name
    
    Name
    ----
    Microsoft.BioEnrollment
    Microsoft.AAD.BrokerPlugin
    Microsoft.Windows.CloudExperienceHost
    Microsoft.Windows.ShellExperienceHost
    windows.immersivecontrolpanel
    Microsoft.Windows.Cortana
    Microsoft.AccountsControl
    Microsoft.LockApp
    Microsoft.MicrosoftEdge
    Microsoft.Windows.AssignedAccessLockApp
    Microsoft.Windows.ContentDeliveryManager
    Microsoft.Windows.FeatureOnDemand.InsiderHub
    Microsoft.Windows.ParentalControls
    Microsoft.Windows.SecondaryTileExperience
    Microsoft.WindowsFeedback
    Microsoft.XboxGameCallableUI
    Microsoft.XboxIdentityProvider
    Windows.ContactSupport
    Windows.MiracastView
    Windows.PrintDialog
    Windows.PurchaseDialog
    windows.devicesflow
    
    PS C:\Users\Administrator> Get-AppxPackage -All Users | Select Name
    
    Name
    ----
    Microsoft.NET.Native.Framework.1.1
    Microsoft.Windows.CloudExperienceHost
    Microsoft.BioEnrollment
    Microsoft.AAD.BrokerPlugin
    Microsoft.Windows.ShellExperienceHost
    windows.immersivecontrolpanel
    Microsoft.Windows.Cortana
    Microsoft.AccountsControl
    Microsoft.LockApp
    Microsoft.MicrosoftEdge
    Microsoft.Windows.AssignedAccessLockApp
    Microsoft.Windows.ContentDeliveryManager
    Microsoft.Windows.FeatureOnDemand.InsiderHub
    Microsoft.Windows.ParentalControls
    Microsoft.Windows.SecondaryTileExperience
    Microsoft.WindowsFeedback
    Microsoft.XboxGameCallableUI
    Microsoft.XboxIdentityProvider
    Windows.ContactSupport
    Windows.MiracastView
    Windows.PurchaseDialog
    Windows.PrintDialog
    windows.devicesflow
    Microsoft.NET.Native.Runtime.1.1
    Microsoft.VCLibs.140.00
    Microsoft.WindowsStore

    As a user in an elevated powershell
    Code:
    PS C:\Windows\system32> Get-AppxPackage | Select Name
    
    Name
    ----
    Microsoft.NET.Native.Framework.1.1
    Microsoft.VCLibs.140.00
    Microsoft.NET.Native.Runtime.1.1
    Microsoft.VCLibs.140.00
    Microsoft.BioEnrollment
    Microsoft.AAD.BrokerPlugin
    Microsoft.Windows.CloudExperienceHost
    Microsoft.Windows.ShellExperienceHost
    windows.immersivecontrolpanel
    Microsoft.Windows.Cortana
    Microsoft.AccountsControl
    Microsoft.LockApp
    Microsoft.MicrosoftEdge
    Microsoft.Windows.AssignedAccessLockApp
    Microsoft.Windows.ContentDeliveryManager
    Microsoft.Windows.FeatureOnDemand.InsiderHub
    Microsoft.Windows.ParentalControls
    Microsoft.Windows.SecondaryTileExperience
    Microsoft.WindowsFeedback
    Microsoft.XboxGameCallableUI
    Microsoft.XboxIdentityProvider
    Windows.ContactSupport
    Windows.MiracastView
    Windows.PurchaseDialog
    Windows.PrintDialog
    windows.devicesflow
    Microsoft.WindowsStore
    
    
    PS C:\Windows\system32> Get-AppxPackage -AllUsers | Select Name
    
    Name
    ----
    Microsoft.NET.Native.Framework.1.1
    Microsoft.Windows.CloudExperienceHost
    Microsoft.BioEnrollment
    Microsoft.AAD.BrokerPlugin
    Microsoft.Windows.ShellExperienceHost
    windows.immersivecontrolpanel
    Microsoft.Windows.Cortana
    Microsoft.AccountsControl
    Microsoft.LockApp
    Microsoft.MicrosoftEdge
    Microsoft.Windows.AssignedAccessLockApp
    Microsoft.Windows.ContentDeliveryManager
    Microsoft.Windows.FeatureOnDemand.InsiderHub
    Microsoft.Windows.ParentalControls
    Microsoft.Windows.SecondaryTileExperience
    Microsoft.WindowsFeedback
    Microsoft.XboxGameCallableUI
    Microsoft.XboxIdentityProvider
    Windows.ContactSupport
    Windows.MiracastView
    Windows.PurchaseDialog
    Windows.PrintDialog
    windows.devicesflow
    Microsoft.NET.Native.Runtime.1.1
    Microsoft.VCLibs.140.00
    Microsoft.WindowsStore
      My Computer


  2. Posts : 68,877
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #191

    Yes for those.
      My Computers


  3. Posts : 8
    Linux Mint 17.3 (Rosa ) Cinnamon 64bit
       #192

    Brink said:
    Yes for those.
    Again, thanks for the quick response.
    I'll work on a way to exclude those programmatically...

    I have a couple more questions (if it's not stretching the relationship):
    • I'm guessing the unremovable options change dependent on Windows version?

    mine is 1511 (OS Build 10856.104) 64 bit

    • Do you know if PowerShell supports the standard cmd options like FOR, IF etc. ?

    Something like:
    for $pName not in (keeplist.txt) do Remove-AppxPackage $pname
      My Computer


  4. Posts : 68,877
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #193

    Q1) It should be the same in all builds and versions of Windows 10 since those apps are system apps used by Windows.

    Q2) I'm afraid I don't know on that one.
      My Computers


  5. Posts : 8
    Linux Mint 17.3 (Rosa ) Cinnamon 64bit
       #194

    Brink said:
    Q2) I'm afraid I don't know on that one.
    I'll check it out and get back to you with my results (hopefully a batch file or script that will do the trick)

    Edit: This looks like a good start http://www.tomsitpro.com/articles/po...oop,2-845.html
      My Computer


  6. Posts : 7
    Win7Pro,Linux
       #195

    Remove apps for a specific account


    I am finding that Get-appxpackage -User xyz *candy* | Removeappxpackage still only deletes for current user (and not for user xyz). Furthermore attempting to run the command again throws a *cannot remove *candy* as it is not installed error even though it is still installed for user xyz (but not for the current user)?
    Last edited by Eireannach; 24 Jul 2016 at 11:39. Reason: clarification
      My Computer


  7. Posts : 68,877
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #196

    Hello Eireannach, :)

    Did you try the command from OPTION THREE for all accounts?
      My Computers


  8. Posts : 7
    Win7Pro,Linux
       #197

    Yes - similar results . It looks like an app can only be uninstalled ( perhaps also for other accounts ) if it is installed in the account one is working from.
      My Computer


  9. Posts : 68,877
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #198

    That's the way it works if you use the command for "current account", but the command for "all accounts" should uninstall the Windows app for all accounts on the PC.
      My Computers


  10. Posts : 2
    Windows 10 Pro
       #199

    If you deleted apps for all users and then made a new user without removing the apps from provisioning apps will repopulate.
    Since they don't exist any more under your, admin account, you can't remove them.
    What I ended up doing is temporary promoting the new user to admin, running the command to remove apps from all users under that new user's account, then demoting it back to normal user. Then remove the apps from provisioning.

    Wasted to much time to do this right.
    Hope this helps someone.
      My Computer


 

Tutorial Categories

Uninstall Apps in Windows 10 Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  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 15:52.
Find Us




Windows 10 Forums