Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 Side by side configuration is incorrect

When I run Visual Studio 2012 Professional I get a side by side configuration error message.

Message:

"C:\Program Files\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe

The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the commande-line sxstrace.exe tool for more detail."

Event log:

"Activation context generation failed for "C:\Program Files\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe". Dependent Assembly coloader80.dll,processorArchitecture="X86",type="win32",version="1.0.0.0" could not be found. Please use sxstrace.exe for detailed diagnosis."

sxstrace.exe: http://pastebin.com/qgS3Sx8c

I've already installed vcredist_x86

I'm running Windows 7 Professional

like image 532
Ahmed Hamdy Avatar asked Feb 28 '13 08:02

Ahmed Hamdy


People also ask

How do I fix the application failed to start because its side by side configuration is incorrect?

Select Start > Control Panel > Add or Remove Programs. Scroll down and locate the program. Select it, and then choose Repair. Once the repair process is completed, launch the program or run the update again.

What does side by side configuration is incorrect mean?

What does side-by-side configuration error mean? This error appears when you try to install or update certain software and is usually caused by a conflict between the software that you're trying to update/install and files in the C++ runtime libraries.


2 Answers

I had the same issue in that several files were not copied over to the VS2012 directories and it caused the 'side by side' issues. In my case I was installing from a drive that was on the network. After installing / uninstalling / reinstalling over and over without success I finally moved the install media to my local hard drive. Then, I was able to uninstall and then reinstall successfully. I believe the problem is that when the install has to reboot and continue installing it can't find the install media 'in time' so then it fails. If you are installing from a 'remote drive' I would suggest moving the install media to a local drive and then trying again.

like image 186
steve Avatar answered Oct 05 '22 08:10

steve


I encountered this problem today and found a crude way to solve it for me, without analyzing logs and looking for missing .dlls.

I opened up the system configuration and was about to de-intall VS2013 RC, when I realized there was an repair option. Trying this brought no effect, but I also saw that VS2012 for windows desktop and vs2012 for web were still installed.

So after a reboot this finally fixed my side-by-side error:

  1. Cleanse the machine of any previously installed Visual Studio versions.
  2. Reboot.
  3. Repair the installed (and only left) version of Visual Studio
  4. Reboot.

Maybe this is of use for everyone else who is encountering this problem in the future.

Kind regards

like image 22
Marco Avatar answered Oct 05 '22 09:10

Marco