Windows 10: Repair option for store apps available through Powershell?

Discus and support Repair option for store apps available through Powershell? in Windows 10 Software and Apps to solve the problem; Hello, I'm in a situation where I need to repair almost all of the store apps I've installed, but I don't want to go through the settings app and... Discussion in 'Windows 10 Software and Apps' started by KPC-Int, Sep 27, 2022.

  1. KPC-Int Win User

    Repair option for store apps available through Powershell?


    Hello, I'm in a situation where I need to repair almost all of the store apps I've installed, but I don't want to go through the settings app and manually click advanced options and then repair for every app. Is there a way to make a powershell script that will do this? All I could find was the Reset-AppxPackage command and I don't want to reset and lose settings and userdata just repair.

    :)
     
    KPC-Int, Sep 27, 2022
    #1

  2. Windows 10 FCU Update - Multiple Apps in Store need Repair

    1. Repair or Reset the missing apps:

    Open Settings, and select Apps.

    On the Apps & features tab, find the name of the missing app. Click the app and select Advanced options (if available).

    If a Repair option is available, click Repair. If this option is not available, or if Repair does not resolve the issue, you may also try the Reset option, though you might lose any app data that was saved.

    Once the repair or reset is completed, the app should again appear in the app list and can be pinned to the Start Menu.

    2. Uninstall and reinstall the missing apps:

    Open Settings, and select Apps.

    On the Apps & features tab, find the name of the missing app. Click the app and select Uninstall.

    Open Store and then reinstall the missing app. Once installed, the app should appear in the app list, and can be pinned to the Start Menu.

    3. Re-register the missing apps using PowerShell – If you have a lot missing apps, advanced users can instead attempt to restore all of them at once using the following PowerShell commands. Note, however, that if Steps 1 and 2 were already attempted and did
    not restore your missing apps, this PowerShell solution will also likely not succeed.

    In Cortana, type PowerShell. In the search results, right-click Windows PowerShell and select Run as administrator.

    In the Powershell window type the following commands. These steps may take a few minutes to complete.

    reg delete “HKCU\Software\Microsoft\Windows NT\CurrentVersion\TileDataModel\Migration\TileStore” /va /f

    get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmetadata\appxbundlemanifest.xml")}

    $bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname

    get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmanifest.xml")}

    Once the PowerShell commands are completed, the apps should appear in the app list, and can be pinned to the Start Menu.

    There seems to be some early adopter issues at this time with Windows 10 1709, if you can, I recommend you downgrade to your previous version until the Fall Creators Update matures with future cumulative updates.
     
    Andre Da Costa, Sep 27, 2022
    #2
  3. Brink Win User
    Mail app will not open on 10041.

    Hello Adam,

    This is the suggested solution below if you haven't already tried it. Repair option for store apps available through Powershell? :)

    In this Windows 10 build 10041, the Mail, Calendar, and People apps may be broken due to a licensing issue with the Store Beta. To get these apps working again, you need to follow these steps:

    • Open powershell as administrator
    • Run the command Get-appxprovisionedpackage –online | where-object {$_.packagename –like “*windowscommunicationsapps*”} | remove-appxprovisionedpackage –online
    • Re-install Mail, People and Calendar from the Store (green tile)
     
    Brink, Sep 27, 2022
    #3
  4. Rose Cal Win User

    Repair option for store apps available through Powershell?

    Microsoft Store and other apps stopped working after a new Windows update

    Hi,

    Corrupted or outdated applications may be the possible cause why you're unable to open some of them. To efficiently assist you, we'd like to gather more information:

    • What troubleshooting steps have you done so far aside from online repair?
    • Are you getting any error messages when you tried opening your applications?

    Meanwhile, we suggest you download and run Windows Apps Troubleshooter by clicking on this
    link. This will automatically diagnose Windows apps/Store concern and will provide a remedy.

    If the issue still persists, we recommend that you reset the Store cache. Kindly follow these steps:

    • Press Windows key + R.
    • Type wsreset.exe and click OK.

    Additionally, we also suggest that you follow these steps below about repairing or resetting the app:

    Repair or Reset the apps

    • Open Settings, and select Apps.
    • On the Apps & features tab, find the name of the missing app. Click the app and select
      Advanced options (if available).
    • If a Repair option is available, click Repair. If this option is not available, or if Repair does not resolve the issue, you may also try the
      Reset option, though you might lose any app data that was saved.
    • Once the repair or reset is completed, the app should again appear in the app list and can be pinned to the Start Menu.

    Let us know if you need further assistance.
     
    Rose Cal, Sep 27, 2022
    #4
Thema:

Repair option for store apps available through Powershell?

Loading...
  1. Repair option for store apps available through Powershell? - Similar Threads - Repair option store

  2. Repair option for store apps available through Powershell?

    in Windows 10 Gaming
    Repair option for store apps available through Powershell?: Hello, I'm in a situation where I need to repair almost all of the store apps I've installed, but I don't want to go through the settings app and manually click advanced options and then repair for every app. Is there a way to make a powershell script that will do this? All I...
  3. Help can't install microsoft store through powershell

    in Microsoft Windows 10 Store
    Help can't install microsoft store through powershell: this is what it saysGet-AppXPackage : The service cannot be started, either because it is disabled or because it has no enabled devicesassociated with it.The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.At...
  4. Help can't install microsoft store through powershell

    in Windows 10 Gaming
    Help can't install microsoft store through powershell: this is what it saysGet-AppXPackage : The service cannot be started, either because it is disabled or because it has no enabled devicesassociated with it.The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.At...
  5. Help can't install microsoft store through powershell

    in Windows 10 Software and Apps
    Help can't install microsoft store through powershell: this is what it saysGet-AppXPackage : The service cannot be started, either because it is disabled or because it has no enabled devicesassociated with it.The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.At...
  6. Using the YourPhone app through powershell

    in Windows 10 Software and Apps
    Using the YourPhone app through powershell: Hi there, I was wondering if there is any way to use the YourPhone app integrated in windows 10 through powershell commands. My intention would be to send an automated message from my phone by running a script. Is that possible and if so how do I achieve that? Thanks in...
  7. How to install Microsoft store app through powershell

    in Microsoft Windows 10 Store
    How to install Microsoft store app through powershell: Hello, Want to know how to install Microsoft store app directly through powershell. https://answers.microsoft.com/en-us/windows/forum/all/how-to-install-microsoft-store-app-through/2a1b065d-99fa-43d2-87e6-d82923c19ab3
  8. Cannot install app through Store or as an .appx through PowerShell on Win10 1909; error...

    in Windows 10 Ask Insider
    Cannot install app through Store or as an .appx through PowerShell on Win10 1909; error...: The specific app I really want to use is Kano's The Force Coding Kit if that matters, however the issue occurs with other stock system apps that I try to update, as well as "App Installer," which I had attempted to install as an alternative to PowerShell once I retrieved the...
  9. Win10 Repair Loop - No USB Options available

    in Windows 10 BSOD Crashes and Debugging
    Win10 Repair Loop - No USB Options available: Occurence: I logged in Wednesday morning and went through my usual rounds of work related tasks. I walked away from the PC with Outlook, Excel and IE running. Went out for coffee, was gone maybe 2 hrs. Came back and of course the monitors had gone to sleep, although the...
  10. Windows Store deleted through PowerShell (Admin)

    in Microsoft Windows 10 Store
    Windows Store deleted through PowerShell (Admin): Hi, I was having an issue with being unable to sign into the Xbox app, so I followed a YouTube tutorial. It told me to go into PowerShell and enter the following: Get-AppxPackage *windowsstore* | Remove-AppxPackage Get-AppxPackage *xboxapp* | Remove-AppxPackage and then...