A Microsoft platform for building and publishing apps for Windows devices.
Great write-up — you've already done most of the investigation yourself..
Short answer: there's no supported way to install this package on modern Windows, and no official source for the APPX.
Project Spartan was never released as a standalone package. It shipped in-box as part of Windows 10 Technical Preview build 10049, released to Insiders in the Fast ring on 30 March 2015. Preview builds are time-limited by design and are no longer distributed or serviced, so there's no Microsoft-provided download for this package.
On the two behaviours you found
1. The "end of life" block. Editing AppxManifest.xml and repacking won't get around it — that's expected, not a bug in your process. Worth knowing: this isn't specific to Spartan. The same message appears for other retired in-box packages (for example Microsoft.Wallet during a bulk re-register on Windows 11), so it's general deployment-stack behaviour for packages that have been retired.
If you want to see exactly where it stops, run:
Get-AppPackageLog -ActivityID <your ActivityId>
You'll see the EOL message logged, followed by an entry saying the last successful state reached was Evaluated, and that the failure happened before reaching PrerequisitesChecked, with hr 0x80073CFD. So the check runs at the prerequisites stage, after the package has been evaluated.
I haven't found a public documentation on this so I'd rather not guess at the mechanism.
2. Why the rename installs but crashes. Package identity is tied to the signing certificate's subject, and Windows requires packages to be signed with a certificate that chains to a trusted root. When you removed AppxSignature.p7x and changed the Publisher, you created a different package that's no longer signed the way the system expects.
For the crash itself: Spartan depends on early Windows 10 internals — the EdgeHTML and UWP components of that build — which have since changed or been removed. I can't confirm that from public docs, but it fits what you're seeing.
Useful references if you want to keep digging into deployment errors generally
- Troubleshooting packaging, deployment, and query of Windows apps — error code table, plus how to pull the Microsoft-Windows-AppXDeploymentServer/Operational log
- MSIX deployment troubleshooting — same error codes with short causes and fixes
- Sign an MSIX package and MSIX persistent identity — how signing and package identity are connected
For preservation/research purposes, the realistic route is running the original build in a VM rather than trying to port the app forward. Note that we can't help with sourcing old preview images here.
Hope that clears up on why this happens. If you found my response helpful or informative, I would greatly appreciate it if you could follow this guidance or provide feedback.
Thank you.