Side-by-side configuration error in Windows 10
Check first the Event Viewer which might tell you the nature of the error.
If this is not enough to pinpoint the error, use the same technique as in the article Troubleshooting side by side issues using sxstrace that uses the Windows utility sxstrace:
-
Run in a Command Window (cmd) :
SxsTrace Trace -logfile:SxsTrace.etl
Run the problematic executable
Press Enter on the above Command Prompt to stop the trace
-
Parse the trace file using the command :
SxsTrace Parse -logfile:SxsTrace.etl -outfile:SxsTrace.txt
Open the text file and find the error.
One possible error will look like this :
click for a larger image
which means that the application couldn’t find msvcr90d.dll
in the above location.
Another error might be :
which means an error symbol in line 18 of the configuration file mycode.exe.config.
Or a missing assembly error might look like this :
Your error might be quite different from the above, which were only examples (and might look quite different in Windows 10).