Uninstall Apps in Windows 10  

Page 49 of 66 FirstFirst ... 39474849505159 ... LastLast

  1. Posts : 5
    Win10 19.03
       #480

    Thanks so far. It all helped a lot. Now I have a selfmade Problem and I am too dumb to fix it.....

    All for sysprep.

    I removed serveral apps.

    Also I removed the Windows Photo App.
    Remove-AppxPackage -AllUsers -Package Microsoft.Windows.Photos_2019.18114.19418.0_neutral_~_8wekyb3d8bbwe

    Now I want this back in my image.

    I opened the store. Downloaded the Windows Photo App. But now I cant sysprep.
    I get the error: "that the Photo App" is not provisioned for all users.

    How can I fix that ? Or reinstall the Photo App on another way. It seems to be still under c:\programs\windowsapps\deletedAllUsersPackages

    Hope someone can help me. Allready modified Tons of things and I dont want to start all over again.
      My Computer


  2. Posts : 625
    Windows 10 Pro x64
       #481

    Adu78 said:
    Thanks so far. It all helped a lot. Now I have a selfmade Problem and I am too dumb to fix it.....

    All for sysprep.

    I removed serveral apps.

    Also I removed the Windows Photo App.
    Remove-AppxPackage -AllUsers -Package Microsoft.Windows.Photos_2019.18114.19418.0_neutral_~_8wekyb3d8bbwe

    Now I want this back in my image.

    I opened the store. Downloaded the Windows Photo App. But now I cant sysprep.
    I get the error: "that the Photo App" is not provisioned for all users.

    How can I fix that ? Or reinstall the Photo App on another way. It seems to be still under c:\programs\windowsapps\deletedAllUsersPackages

    Hope someone can help me. Allready modified Tons of things and I dont want to start all over again.

    Right lick on the Start Button, Open PowerShell (Admin"


    Copy and paste all this and hit ENTER

    Get-AppxPackage *3dbuilder* | Remove-AppxPackageGet-AppxPackage *windowsalarms* | Remove-AppxPackageGet-AppxPackage *windowscommunicationsapps* | Remove-AppxPackageGet-AppxPackage *windowscamera* | Remove-AppxPackageGet-AppxPackage *officehub* | Remove-AppxPackageGet-AppxPackage *skypeapp* | Remove-AppxPackageGet-AppxPackage *getstarted* | Remove-AppxPackageGet-AppxPackage *zunemusic* | Remove-AppxPackageGet-AppxPackage *windowsmaps* | Remove-AppxPackageGet-AppxPackage *solitairecollection* | Remove-AppxPackageGet-AppxPackage *bingfinance* | Remove-AppxPackageGet-AppxPackage *zunevideo* | Remove-AppxPackageGet-AppxPackage *bingnews* | Remove-AppxPackageGet-AppxPackage *onenote* | Remove-AppxPackageGet-AppxPackage *people* | Remove-AppxPackageGet-AppxPackage *windowsphone* | Remove-AppxPackageGet-AppxPackage *photos* | Remove-AppxPackageGet-AppxPackage *bingsports* | Remove-AppxPackageGet-AppxPackage *bingweather* | Remove-AppxPackageGet-AppxPackage *xboxapp* | Remove-AppxPackageGet-AppxPackage *Microsoft.GetHelp* -AllUsers | Remove-AppxPackageGet-AppxPackage Microsoft.Messaging | Remove-AppxPackageGet-AppxPackage Microsoft.GetHelp | Remove-AppxPackageGet-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackageGet-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackageGet-AppxPackage Microsoft.Windows.Cortana | Remove-AppxPackageget-appxpackage *soundrecorder* | remove-appxpackageGet-AppxPackage *xboxspeech* | Remove-AppxPackageGet-AppxPackage *sticky* | Remove-AppxPackageGet-AppxPackage *YourPhone* | Remove-AppxPackageGet-AppxPackage *ZuneVideo* | Remove-AppxPackageGet-AppxPackage *ZuneMusic* | Remove-AppxPackageGet-AppxPackage *WebpImageExtension* | Remove-AppxPackageGet-AppxPackage *VP9VideoExtensions* | Remove-AppxPackageGet-AppxPackage *HEIFImageExtension* | Remove-AppxPackageGet-AppxPackage *ScreenSketch* | Remove-AppxPackage
      My Computers


  3. Posts : 625
    Windows 10 Pro x64
       #482

    @Adu78


    If you want to re-install the Photos app, just go and install Windows Live Essentials. . You can pick and choose what you want to install. I choose Photo Gallery and Windows Movie Maker, but WMM isn't required. Here's the link

    Download Windows Live Essentials - MajorGeeks
      My Computers


  4. Posts : 5
    Win10 19.03
       #483

    Hi. Thanks for the fast answers. But neither helps me. The first thing just uninstalls the PhotoApp again.
    But I want that in my Image for every user.

    The second installs a different app. I could use XNVIew IfranView whatever.
    But they want the native Windows Photo app..
      My Computer


  5. Posts : 128
    Win10
       #484

    When I enter the following command (according to Option Three in the first post in this thread):

    Get-AppxPackage | Select Name, PackageFullName

    Then all Apps are listed which exists for the CURRENT user.

    How do list all Apps which exist for at least one (=me or another) user on the local computer?

    Or even better:

    How do I list all Apps which exist for at least one other user but not me on the local computer?
      My Computer


  6. Posts : 68,886
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #485

    Hello @pstein,

    You can do this by signing in to their account, and then running the command from within their account.
      My Computers


  7. Posts : 312
    Microsoft Win 10
       #486

    He freed more space to a 32 GB notebook, allows me to install basic homework programs.
      My Computer


  8. Posts : 128
    Win10
       #487

    In the topmost posting of this thread the Powershell command for removing All Apps except Store from All Current Accounts on PC is given as (Option Eight No.5):

    Get-AppxPackage -AllUsers | where-object {$_.name –notlike '*store*'} | Remove-AppxPackage

    How can I execute this command from command prompt (=NOT Powershell)?

    Assume I want to uninstall a lot of Apps (but not all and keep more Apps than only "store").
    Therefore I would like to a have/create a batch script with all individual commands to uninstall all
    Apps from all users. From this script file I would like to comment out some of them individually.

    Do I have to copy & paste MANUALLY all the command strings from Option seven in the topmost posting of this thread?

    I can imagine that such a collection file already exists. Where can I download it?

    Thank you
    Peter
      My Computer


  9. Posts : 31,629
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #488

    pstein said:
    How can I execute this command from command prompt (=NOT Powershell)?

    You can run a Powershell command from a command prompt by typing POWERSHELL followed by the command in "quotes". You MUST use different quotes from any that may be used in the PS command. In this case the single quotes used in -notlike '*store*' mean you need to use double quotes around the command. Note that this command requires a Command Prompt (Admin) in order to run (because this powershell command need admin rights).

    POWERSHELL "Get-AppxPackage -AllUsers | where-object {$_.name –notlike '*store*'} | Remove-AppxPackage"


    You could use this method to run a PS command equally well in a batch file, in that case the batch file would need to be run as administrator. It would also be a good idea to add a PAUSE command as the last line so you can read any success/error messages before the command window closes.
      My Computers


  10. Posts : 868
    Windows 10 x64
       #489

    I intended to uninstall a number of apps within Windows 10 x64 (1909) on my laptop.
    Quite a number of them have a greyed out uninstall. One might go into 'Advanced' mode and
    maybe(?) set 'Background apps' to Off (?)
    or
    click on Terminate (?)

    I know, using a PowerShell command one might remove them as well.
    However, these commands usually are for experts users only and not, let's say' for the 'common public'.
    It is no problem to use those commands.
    OTOH Microsoft has made it a little more difficult for the 'non-expert-users, so to say.

    Is there a drawback by removing those apps?

    (I glued to apps and features list side-by-side)

    Uninstall Apps in Windows 10-windows-10-apps-features-after-clean-install-24122019-144452.pngUninstall Apps in Windows 10-windows-10-apps-features-uninstall-greyed-out-24122019-152852.png
      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 09:06.
Find Us




Windows 10 Forums