Share via

error when updating UWP apps.

Anonymous
2023-06-10T10:43:50+00:00

hi there. this is actually applied on almost any apps. but i want point out the Xbox app instead. cause it's important enough for me.

when i try to update it from MS Store, it throws
"App installation failed with error message: Deployment Add operation with target volume C: on Package Microsoft.GamingApp_2305.1001.6.0_neutral_~_8wekyb3d8bbwe from: (Microsoft.GamingApp_2305.1001.6.0_neutral_~_8wekyb3d8bbwe.msixbundle) failed with error 0x8007000A. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues. (0x8007000a)"
same can be said when i try to update it using .msix file.

what i've already tried "without damaging my personal files" are ranging from enable ANY windows store related services, creating new local admin user, system restore, wsreset, sfc /scannow and related command shenanigans, deleting %temp% and SoftwareDistribution, to "extreme" ones like jump ship from Dev Insider to Canary Insider.

Edit: the error code is in bold character
Edit2: fixed. by my own tinkering. tutorial is in the comments

Windows Insider program | Apps on Insider preview

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. BryceSor 4,950 Reputation points Volunteer Moderator
    2023-06-10T20:58:47+00:00

    Hi Tils-Gee,

    Error code 0x8007000a usually indicates a problem with the operating system installation, but it can also affect the installation of UWP apps.

    To fix this issue, you can try installing the Microsoft.GamingServices app manually using PowerShell as an administrator. Here are the steps you need to follow:

    • Open PowerShell as an administrator.
    • Type the command get-appxpackage Microsoft.GamingServices | remove-AppxPackage -allusers and press Enter.
    • Restart your PC and open PowerShell as an administrator again.
    • Type the command start ms-windows-store://pdp/?productid=9MWPM2CQNLHN and press Enter.
    • The Microsoft Store will open and prompt you to install Gaming Services. Click Install.
    • After the installation is complete, try installing your desired game again.

    Additionally, you may want to check your antivirus program settings and make sure it is not blocking the installation of UWP apps. Which Anti-virus are you using?

    You may also want to run the DISM tool to repair any corrupted system files. You can learn how to use it here: Repair a Windows Image | Microsoft Learn

    https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/repair-aTils-Gee-windows-image?view=windows-11

    1 person found this answer helpful.
    0 comments No comments
  2. BryceSor 4,950 Reputation points Volunteer Moderator
    2023-06-11T05:57:01+00:00

    great it fixed, thanks for the added information

    0 comments No comments
  3. Anonymous
    2023-06-11T04:15:39+00:00

    Hi Tils-Gee,

    Error code 0x8007000a usually indicates a problem with the operating system installation, but it can also affect the installation of UWP apps.

    To fix this issue, you can try installing the Microsoft.GamingServices app manually using PowerShell as an administrator. Here are the steps you need to follow:

    • Open PowerShell as an administrator.
    • Type the command get-appxpackage Microsoft.GamingServices | remove-AppxPackage -allusers and press Enter.
    • Restart your PC and open PowerShell as an administrator again.
    • Type the command start ms-windows-store://pdp/?productid=9MWPM2CQNLHN and press Enter.
    • The Microsoft Store will open and prompt you to install Gaming Services. Click Install.
    • After the installation is complete, try installing your desired game again.

    Additionally, you may want to check your antivirus program settings and make sure it is not blocking the installation of UWP apps. Which Anti-virus are you using?

    You may also want to run the DISM tool to repair any corrupted system files. You can learn how to use it here: Repair a Windows Image | Microsoft Learn

    https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/repair-aTils-Gee-windows-image?view=windows-11

    No. my problem is in Microsoft.GamingApp , not the services one. and i know how to fix it. the problem is app basis. nor services/system basis. so.

    for people who have same problem just like me in the future, i will tell you my "recipe"

    step 0: download this script. it is useful to download msix / UWP files app directly from Microsoft server. plus, store.rg-adguard.net doesn't work anymore (Urgent: after click the GitHub link, remove "%EF%BF%BC%EF%BF%BCstep" from GitHub URL to resolve error 404):

    https://github.com/MattiasC85/Scripts/blob/master/OSD/Download-AppxFromStore.ps1step 0.5: copy the store link for broken apps. by clicking "share" button on windows store and press "copy link". for example https://www.microsoft.com/store/productId/9MV0B5HZVK9Zstep 1: use that remove-AppxPackage command. but this time, replace "Microsoft.GamingServices" with "Microsoft.GamingApp" for my case. each app has its own unique install ID. if the problem occurs on Roblox, replace it with "ROBLOXCORPORATION.ROBLOX". you can check install ID for each broken application using "Get-AppxPackage –AllUsers | Select Name, PackageFullName" or "Get-AppxPackage –AllUsers" command. or check it on script after you did in step 3. for example, i found install ID for Windows Clock, which is "Microsoft.WindowsAlarm" by see picture below.

    step 2: run the script from step 0 by Right Click -> Run WIth PowerShell

    step 3: paste link that you get from step 0.5

    step 4: a file explorer window will opened. double click the .msixbundle file ones and install it. it is literally the .apk for windows UWP apps.

    Step 5 (urgent): to make sure there is no error will trigger again, remove any file inside SoftwareDistribution, %temp%, and catroot2 folder.

    Step 6: now try to updating it again from windows store.

    Pict: running script from step 0

    Image

    0 comments No comments