How to remove Windows Backup 'app'?

Page 4 of 6 FirstFirst ... 23456 LastLast

  1. Posts : 782
    Windows 7
       #31

    This won't change anything for 95% of this forum's audience.
    - Less than half of you use Windows Home edition, and this upcoming setting won't apply.
    - The other half aren't members of any AAD or AD domain, and this setting won't apply.

    This fix is for managed organizations which already have cloud storage and backup solutions in place. There is financial incentive for MS pushing Windows Backup. If you back up your system, your OneDrive usage increases and possibly forces you to purchase a subscription for additional storage. This is intended as an annual cash grab.

    They are effectively (and clumsily) trying to compete against Carbonite and BackBlaze, who already provide cloud-based backups.
      My Computer


  2. Posts : 6,856
    22H2 64 Bit Pro
       #32

    So I log in with a local account and don't have a microsoft account. Therefore i can't use it. OneDrive is also fully removed.

    How to remove Windows Backup 'app'?-windows-back-up.jpg
      My Computer


  3. Posts : 1,939
    Windows 7 Home Premium x64
       #33

    happy to report that downloading & installing the recent KB5031356 cumulative update does not bring back the Windows Backup app after running powershell command Remove-WindowsPackage -Online -PackageName "Microsoft-Windows-UserExperience-Desktop-Package" (ah yes!)
      My Computers


  4. Posts : 213
    Windows10
       #34

    I noticed this too. It's strange that the icon has reappeared in the start menu apps (I haven't opened it)
    but Windows Backup does not show up in Task Manager/App History and the User Experience package has not reinstalled.
      My Computer


  5. Posts : 6,856
    22H2 64 Bit Pro
       #35
      My Computer


  6. Posts : 213
    Windows10
       #36

    That's fair. MS is just as bad as google when it comes to "it's a sytem app and therefore can't be removed".
    Coy, disingenuous, straight out lies.

    In this case, I really don't get it. Are they trying to persuade users to migrate from a local to a M$ account?
    I'm too old and cynical for this nonsense
      My Computer


  7. Posts : 6,856
    22H2 64 Bit Pro
       #37

    Sure you can remove it but it might break something in future like a cumulative update that targets Windows Backup.
      My Computer


  8. Posts : 10
    Windows
       #38

    davexnet said:
    That's fair. MS is just as bad as google when it comes to "it's a sytem app and therefore can't be removed".
    Coy, disingenuous, straight out lies.

    In this case, I really don't get it. Are they trying to persuade users to migrate from a local to a M$ account?
    I'm too old and cynical for this nonsense
    They weren't like this until Windows 8, then they saw Google not allowing the admin rights on the devices by default and to be able to get it, user has to do complete tech savvy marathon. And they thought, woah! Google got away with murder, wouldn't hurt if just drive recklessly too and they started following in the Google's footstep.

    In my opinion, they very well adopt the subscription based model for Windows 12 hence the drive to make users login with an online Microsoft account. Google showed others how to snatch the privileges of users by continuously screaming "muh...security".
      My Computer


  9. Posts : 274
    WIN10
       #39

    Edit: Better way to do it in post #40 below!
    Will leave this OP for the heck of it though.

    Did not read entire thread, but here is what worked for me.
    1. Run command in Powershell to find the version of "Windows-UserExperience-Desktop-Package" installed
    2. Remove it > Reboot
    3. Probably every time there is a new version of "Windows Feature Experience Pack", it will return and you'll have to repeat the process. I'm sure eventually M$ will add some new spywa...important data min... feature they don't want us nuking (for "muh securitays" and to "save da children") and disable all this...but in the meantime.

    Warning: this nukes the entire "Windows Feature Experience Pack", so if that has anything you want, don't do it! So far, I have noticed zero ill effects...but I don't use any of Windows' "fluff". Will edit if I find issue...

    PowerShell as admin:
    Code:
    dism /online /get-packages

    found on mine:
    Code:
    Package Identity : Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~amd64~~10.0.19041.3636
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 11/17/2023 7:37 AM

    adjust to correct version and run:
    Code:
    Remove-WindowsPackage -Online -PackageName "Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~amd64~~10.0.19041.3636"

    Before
    How to remove Windows Backup 'app'?-userexperience-before.jpg

    After
    How to remove Windows Backup 'app'?-userexperience-after.jpg
    Last edited by Quexos; 14 Jan 2024 at 07:21.
      My Computer


  10. Posts : 8
    10 Pro
       #40

    Quexos said:
    Did not read entire thread, but here is what worked for me.
    1. Run command in Powershell to find the version of "Windows-UserExperience-Desktop-Package" installed
    2. Remove it > Reboot
    3. Probably every time there is a new version of "Windows Feature Experience Pack", it will return and you'll have to repeat the process. I'm sure eventually M$ will add some new spywa...important data min... feature they don't want us nuking (for "muh securitays" and to "save da children") and disable all this...but in the meantime.

    Warning: this nukes the entire "Windows Feature Experience Pack", so if that has anything you want, don't do it! So far, I have noticed zero ill effects...but I don't use any of Windows' "fluff". Will edit if I find issue...

    PowerShell as admin:
    Code:
    dism /online /get-packages

    found on mine:
    Code:
    Package Identity : Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~amd64~~10.0.19041.3636
    State : Installed
    Release Type : OnDemand Pack
    Install Time : 11/17/2023 7:37 AM

    adjust to correct version and run:
    Code:
    Remove-WindowsPackage -Online -PackageName "Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~amd64~~10.0.19041.3636"

    Before
    How to remove Windows Backup 'app'?-userexperience-before.jpg

    After
    How to remove Windows Backup 'app'?-userexperience-after.jpg
    Lovely! Here is your code in one line without the hassle of doing all the searching after the package etc etc manually.
    Code:
    dism /online /get-packages | Select-String "UserExperience" | ForEach-Object { $_ -match 'Package Identity : (.+)$' | Out-Null; $matches[1] } | ForEach-Object { Remove-WindowsPackage -Online -PackageName $_ }
      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 06:02.
Find Us




Windows 10 Forums