-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App Installer emitting a "Catastrophic error (0x8000FFFF)" on some machines #186
Comments
Hi @nbevans Thanks for reporting this. To help us diagnose the issue, can you please make a Feedback Hub submission in the Developer Platform > App Deployment category, while reproducing the error. Please attempt both the ms-appinstaller link and Add-AppxPackage based installation when submitting the repro. Can you please also attach a copy of your .appinstaller file, and then post the link to your Feedback Hub submission on here when you're done. Thanks, |
Hi @Huios We are just trying to get access to a machine with the problem then we will follow these steps. |
Hi @Huios We managed to get access to a customer machine with the issue and followed your instructions above. Here is a link to the Feedback Hub data that we recorded during both App Installer's attempt and then the successful Add-AppxPackage invocation: The data also includes the .appinstaller file and AILog.txt Apologies for the delays in getting this data for you. Thank you! |
Hi @nbevans Thanks for filing the feedback! I'm forwarding this to our devs for investigation. Cheers, |
Just wondering if you have any news on this yet? We're currently holding off releasing app updates because of this issue - so the impact is pretty high, for what it's worth. |
@nbevans Please re-file the feedback. The previous feedback failed to capture any logs and unfortunately the communication got lost in the shuffle. |
I submitted more feedback hub data: https://aka.ms/AAcg41e |
@nbevans Are you still seeing the 0x8000FFFF error too? That might be a different issue, so please file another feedback if you're able to reproduce failures with that error code. Your feedback shows an 0x80D05011 error; we have a fix for the 0x80D05011 error in the next OS release, and are investigating whether we can release that in a patch to the existing releases. This is unfortunately an unexpected cache issue in the downloading mechanism used to retrieve the appinstaller file, so the issue should disappear after reboot. We don't have a reliable workaround for this. |
Apologies - I got my error codes mixed up. I have not seen the "Catastrophic error" 0x8000FFFF for a while but I aren't actively recording every case which occurs. I am of course keeping an eye out for it - along with any other interesting App Installer failures. |
Closing for now. Please reopen if you have further questions. |
This needs to be reopened! Users still get this error message on installing from .appinstaller. |
Was getting this error on a customer with App Installer (0x8000FFFF) Managed to get it to install via Add-AppxPackage command in the end after encountering this error. Had to uninstall some CoreRuntime package from All Users first in order for our installer to succeed. Bizarre. Afterwards, I uninstalled the app. And tried App Installer again. Same 0x8000FFFF error. But Add-AppxPackage worked a second time absolutely fine. I am continually amazed by the disparity between App Installer and Add-AppxPackage. What are they doing different? Surely App Installer is just a UI shell wrapping around the same infrastructure used by the PowerShell command!?
|
We decided to create our own installer: a console app written in C++ that:
This works much better than the official AppInstaller app. |
Yeah we have something similar too as a backup option. However in this case that too went wrong because of some bizarre file conflict:
Had to manually uninstall this package using |
We've been having this issue most of the year and it seems to be getting worse (that's the feeling anyway).
We have an B2B app which we sideload onto our customer machines via a
ms-appinstaller
web link. This app is a fully native UWP app. It is not a Desktop Bridge app.Some machines can no longer install the app via the App Installer and it produces the
Catastrophic error (0x8000FFFF)
message as the error output.I have inspected the
AILog.txt
from one such machine and it doesn't really provide any further insight as to the cause. But here is the relevant excerpt from that log anyway:So far we have to work around the issue by using PowerShell's
Add-AppxPackage "url to .appinstaller file" -AppInstallerFile
command which works flawlessly every time.The problem though is that auto-updates (as per the clauses defined in the
.appinstaller
file) do not work. And nor does updating manually via running thems-appinstaller
link and clicking the Update button on App Installer. So it means we have to update via PowerShell as well which is clearly not a good experience for our end-users.The text was updated successfully, but these errors were encountered: