I used 'Microsoft Visual Studio Installer' to create a MSI for a legacy c# WPF application.
After I install, I see this error BELOW. Do I have the wrong net framework installed ?
Faulting application name: MyDesktop.UI.exe, version: 1.20.7097.18607, time stamp: 0x5cfa9cce Faulting module name: clr.dll, version: 4.7.3416.0, time stamp: 0x5cabfd2c Exception code: 0xc0000005 Fault offset: 0x0045510d Faulting process id: 0x93c Faulting application start time: 0x01d51d5595e74050 Faulting application path: C:\Program Files (x86)\ASD\Microsoft.Support.UnifiedDesktop.UI.exe Faulting module path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll Report Id: b26b4f9f-2e97-434b-b605-fa95ba4974ac Faulting package full name: Faulting package-relative application ID:
Source Code?: I assume you don't have the source code and can't
1)
just step-through the launch sequence or2)
attach to debug binaries deployed to final installation location? Just checking.No Source Code: Without source available, I usually use
3)
ProcMon.exe
to monitor launch problems (quick sample - and Hanselman has a video on ProcMon.exe) and4)
I enable any availablelogging
and / orapplication.exe debug modes
.5)
Sometimes I assemble all files in a folder on the desktop and try to run from there (generally no permission or access denied problems).Common Problems: Very often problems relate to
lacking permission
ormissing runtimes
(for example:.Net
,Java
,VC++ Runtime
,etc...
) and the usualconfiguration errors
found inconfig files
(ini
,xml
) and theregistry
(wrong paths
,URLs
,settings
,etc...
) - obvious, just mentioning.Here are some resources: