I got minidump from the process of submitting Windows Store applications (submitted by the reviewer) due to a failure in my application. I'm having trouble loading characters for my application because the error occurs inside App.ni.exe , a file that I donβt know where it came from.
My application only has App.exe (and some DLLs), but the dump continues to reference .ni.dll and .ni.exe . These files are not found anywhere in my .appx or .appxsym .
My application is created for each specific platform (x86, x64 and ARM). This is the x64 version that crashed into stackdump.
My current attempts with windbg:
Symbol path:
Srv*C:\Users\Vegard\Appdata\local\temp\SymbolCache*http://msdl.microsoft.com/download/symbols`
Windbg attempt:
0:006> !analyze -v ******************************************************************************* * * * Exception Analysis * * * ******************************************************************************* Unable to load image Newtonsoft.Json.ni.dll, Win32 error 0n2 *** WARNING: Unable to verify checksum for Newtonsoft.Json.ni.dll *** ERROR: Module load completed but symbols could not be loaded for Newtonsoft.Json.ni.dll Unable to load image App.ni.exe, Win32 error 0n2 *** WARNING: Unable to verify checksum for App.ni.exe *** ERROR: Module load completed but symbols could not be loaded for App.ni.exe Unable to load image mscorlib.ni.dll, Win32 error 0n2 *** WARNING: Unable to verify checksum for mscorlib.ni.dll
Update : trying to run ngen App.exe (works as admin) I get the following error:
> ngen.exe install App.exe [snip] This operation is only valid in the context of an app container. (Exception from HRESULT: 0x8007109A)
What is the application container in this case? Where can I run it?
Refresh . After long troubleshooting and finding out the root cause using other tools, I came to the conclusion that the minidump file that I have does not contain this information. Regardless of persuasion, it can cause the debugger to load characters for files.
c # windows-store-apps windows-store windbg
Vegard larsen
source share