Uninstall Apps in Windows 10  

Page 55 of 66 FirstFirst ... 545535455565765 ... LastLast

  1. Posts : 8
    Windows 10
       #540

    Hello ! Thanks for your quick answer and greetings !

    Bree said:
    I've just clicked and dragged the Weather tile from Start and dropped it onto the Desktop to create a link. The link works and can be renamed. This is in the latest 20H2, build 19042.630.
    I am actually able to do that without problem, but it's not exactly what I was looking for, maybe I didn't explain it correctly, sorry.

    In his post, user Edwin said:

    Edwin said:
    I've found if you 'uninstall' all packages running: Get-AppxPackage -AllUsers | Remove-AppxPackage in a Power Shell Admin it removes the links for the use of the Apps, not necessarily uninstalls them, leaving System Apps only, hidden and unhidden:

    ...

    However, before doing so, if you open shell:appsfolder from a run box first and create shortcuts for all apps and put them in a folder somewhere, you can go back to that folder and click on the blank icons of the removed packages to reinstate them, including the Store
    The bolded part doesn't work for me, once apps are uninstalled, their shortcuts don't do anything.



    On this video (timestamp 1:11), you can see the Start Menu shortcuts are all renamed, both for personal apps and the few windows that you can't rename otherwise (like calc, and paint). Except Systems which is impossible to rename apparently, that's okay. There's also no "hidden" letters on this start menu, if calc or Paint is installed on my machine, it will appear under "C" or "P" letters, no matter what I do...

    That's what I want to achieve, rename how UWP / Microsoft Store apps appears in the start menu, by any way, using customs shortcuts or hiding the actual links of installed apps if it's impossible to directly rename them. I do know how to do that for user applications, but not UWP ones.

    Uninstall Apps in Windows 10-b420553fdf.png

    Is this something you can achieve right now ? (I do have the same Windows version / update as you, 20H2, build 19042 630.

    Thanks again, hope this is clearer ! I saw there was a specific thread about renaming Start Menu apps, but couldn't find the answer I was looking for in it, Edwin mentionned exactly what I wanted to do here so I just replied here. I'll post the eventual results in the other thread if there's a way to do it.
      My Computer


  2. Posts : 31,692
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #541

    PhobosAnomaly said:
    I am actually able to do that without problem, but it's not exactly what I was looking for, maybe I didn't explain it correctly, sorry.
    Once you have a renamed shortcut on your desktop you can copy and paste it into your Start menu folder(s).

    Add or Remove Items for All Apps in Start menu in Windows 10
      My Computers


  3. Posts : 17,838
    Windows 10
       #542

    PhobosAnomaly said:
    ...Clicking the shortcuts after uninstalling the apps doesn't do anything for me.
    Yeah, that method doesn't work anymore! Sorry, it's an old video!

    PhobosAnomaly said:
    There's also no "hidden" letters on this start menu, if calc or Paint is installed on my machine, it will appear under "C" or "P" letters, no matter what I do...
    I've named most of the shortcuts with 'Bullet' then the name, (Alt+7), that way they all end up in the & category only!

    You can create a UWP shortcut as @Bree instructed but you'll have two links in the Start Menu, and, if you invoke an instance using the custom UWP shortcut, it will have a blank Taskbar icon...

    Uninstall Apps in Windows 10-000363.png
      My Computer


  4. Posts : 8
    Windows 10
       #543

    Oh, glad to see you answering me so fast after my mention of a more than five years old post !

    So that's what I thought, some things have changed, what was once possible, is not anymore or at least not the same way...

    I understand it is also not possible to hide the original shortcuts for the UWP apps then, if these are still installed ? ('cause on your original video, there's only the shortcuts appearings with the bullets, no multiple links when your scroll down... Also on your screenshot, Camera is using a shortcut (?), so you just have the original one placed under "C" on your start menu if you scroll down, if I understand correctly, right ?

    It's better than nothing, and way better than how it used to be anyway, so I'll go this way.

    I wanted to add - I'm very new to Windows 10 after using 7 since so many years, trying to get things sorted the best possible way after a fresh install, the tutorials available on tenforums are really useful for this and comprehensive, I'll definitely keep an eye around for any question I could have in the future.

    Great community !
      My Computer


  5. Posts : 17,838
    Windows 10
       #544

    PhobosAnomaly said:
    ...I understand it is also not possible to hide the original shortcuts for the UWP apps then, if these are still installed ? ('cause on your original video, there's only the shortcuts appearings with the bullets, no multiple links when your scroll down... Also on your screenshot, Camera is using a shortcut (?), so you just have the original one placed under "C" on your start menu if you scroll down, if I understand correctly, right ?
    Correct!

    Uninstall Apps in Windows 10-000366.png
      My Computer


  6. Posts : 51
    Windows 10
       #545

    I don't think the Powershell command for removing specific apps for all users (Option Ten) is correct. If I use it the removal fails:
    Remove-AppxPackage : Removal failed. Please contact your software vendor. ... failed with error 0x80070002.

    But if I do the same without the additional -allusers at the end it works fine. So the working command would be like this:
    Code:
    Get-appxpackage -allusers *Microsoft.3dbuilder* | Remove-AppxPackage
    I tried it with a couple of apps and it does appears to remove them from all user accounts.
    Windows 10 20H2
    Last edited by Brink; 12 Mar 2021 at 12:40. Reason: updated option number
      My Computer


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

    centen said:
    I don't think the Powershell command for removing specific apps for all users (Option Ten) is correct. If I use it the removal fails:
    Remove-AppxPackage : Removal failed. Please contact your software vendor. ... failed with error 0x80070002.

    But if I do the same without the additional -allusers at the end it works fine. So the working command would be like this:
    Code:
    Get-appxpackage -allusers *Microsoft.3dbuilder* | Remove-AppxPackage
    I tried it with a couple of apps and it does appears to remove them from all user accounts.
    Windows 10 20H2
    Thank you. I'll do some more testing with 20H2.

    It used to be that the command wouldn't work unless -allusers was added to the end. It seems it may have reverted back again.
    Last edited by Brink; 12 Mar 2021 at 12:40. Reason: updated option number
      My Computers


  8. Posts : 51
    Windows 10
       #547

    Correction, after more testing: with -allusers at the end it removes an app from the other accounts, but not from the current account, whereas without -allusers at the end it only removes it from the current account.
    So from what I can see, there's no way to remove an app from all accounts at once.
    FWIW: I only tested with two accounts.
    (Oh and the People app can't be removed.)
      My Computer


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

    centen said:
    Correction, after more testing: with -allusers at the end it removes an app from the other accounts, but not from the current account, whereas without -allusers at the end it only removes it from the current account.
    So from what I can see, there's no way to remove an app from all accounts at once.
    FWIW: I only tested with two accounts.
    (Oh and the People app can't be removed.)
    After some testing on my build 21332 system, it's still working as is in option 10 to uninstall the apps from all users on the computer. I'm not sure why it's not the same for you.

    The command to uninstall the Microsoft People app still works, but it will not remove or disable the People button on the taskbar if that's what you meant.
    Last edited by Brink; 12 Mar 2021 at 12:53. Reason: updated option number
      My Computers


  10. Posts : 68,997
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #549

    Tutorial updated to arrange options in more logical order, and added:

    Option Nine: To Remove Specific Windows Apps from All Users in PowerShell
      My Computers


 

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 03:24.
Find Us




Windows 10 Forums