Forum Discussion
datamystic
Sep 24, 2024Copper Contributor
Uploaded MSIX has generic errors
I have generated a MSIX for my Delphi App, which runs perfectly locally. It passes all the blocking Windows App Store Cert issues. When I upload it for the App Store, I get a series of generic er...
Sep 25, 2024
datamystic To upload to the store you have to send an msixbundle file, even if you only have one type of msix package. VStudio used to do this but stopped for some reason, probably because makeappx/makemsix seems to have been broken in newer releases.
Here are the manual instructions I have been using, which I found somewhere in the past:
- Locate folder with the msix file.
- Create a folder "Parent" and subfolder to that called "Packages".
- Copy the MSIX file to the "Packages" folder.
- You must use an old version of makeappx to create the bundle. There is an old one in the GitHub Repository for Microsoft/msix-packaging
- In a powershell window RunAsAdmin, cd to the folder containing this makemsix.exe
- .\MakeAppx.exe bundle /v /d "{PathToFolder}\Parent\Packages" /bv {PackageVersionString} /p "{PathToFolder}\Parent\{PackageName}.msixbundle"
- Cd to the Parent folder and compress to a zip file (don't just try to rename the original), then rename the extension to msixupload.
Good Luck!
datamystic
Sep 29, 2024Copper Contributor
TIMOTHY_MANGAN Thanks heaps for this info! I think I have more to do, but this gives me another avenue to pursue