Windows error 0x80080203, -2146958845

Detailed Error Information

APPX_E_MISSING_REQUIRED_FILE[1]

MessageThe file is not a valid Appx package because it is missing a manifest or block map, or missing a signature file when the code integrity file is present.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode8 (0x008)
NameFACILITY_WINDOWS[2][1]
DescriptionThe source of the error code is the Windows subsystem.[2][1]
Error Code515 (0x0203)

Questions

4votes
1answer

How to sign Windows 10 (UWP) App?

The process should be the same, like for Windows 8.1(Universal) Apps. (Link) I used this command: powershell.exe -ExecutionPolicy Unrestricted -File "c:\program files (x86)\Microsoft SDKs\WindowsPhoneApp\v8.1\Tools\MDILXAPCompile\BuildMDILAPPX.ps1" -appxfilename "C:\SignApps\App.appx" -pfxfilename "c:\SignApps\Certificate.pfx" -password ***** -inputFolder "C:\SignApps\input" -outputfolder "C:\SignApps\output" The signing process throw this error: MakeAppx : error: You must include a valid app package [...] read more
cordova
certificate
win-universal-app
windows-10-universal
windows-10-mobile
3votes
2answers

Create Windows Phone 8.1 app package with makeappx.exe

I have Windows Phone 8.1 project (not Silverlight). I want create app package using makeappx.exe without Visual Studio. Using command C:\Program Files (x86)\Windows Kits\8.1\bin\x64>makeappx.exe pack /v /l /d C:\MyAppProjectFolder\ /p C:\MyAppProjectFolder\MyApp.appx But had errors: MakeAppx : error: You must include a valid app package manifest file named AppxManifest.xml in the [...] read more
c#
windows-phone-8.1
appx
1vote
1answer

the file is not a valid app package because it is missing a manifest or block map

When i try to create a windows store package from my WPF application, i see this error: "the file is not a valid app package because it is missing a manifest or block map" I've create an AppxManifest.xml file, but it still doesn't work. Here's how i use Makeappx.exe and [...] read more
c#
wpf
windows-8
windows-store-apps

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0