Visual Studio long install/uninstall time?

In the organization that I work at, we have a number of developers who use Visual Studio 2013. I also personally use Visual Studio 2013, both at work and at home.

What gets me is just how long it takes to install Visual Studio 2010/2013. Currently my install has been going for 2 hours and 45 minutes, though this is via the web installer. A typical install onto a developer's machine in my organization generally takes 1.5-2 hours to complete, and this is regardless if the disc image is on a shared drive or on their computer.

Additionally, uninstalling is a nightmare. With the release of the Community Edition, I have decided to upgrade from Visual Studio 2010 (For which I own a license for) to Visual Studio 2013 Community Edition. The uninstall itself took over 3 hours.

So what is taking Visual Studio so long to install/uninstall? Is there anything I can do to speed up this process when we deploy it to our developer's machines?


Make sure assembly binding logging is disabled. It's easy to forget to turn it off after enabling it while debugging something, and it can slow down installing VS significantly.

This SO answer has details on running the log viewer and changing the settings.


I was uninstalling VS 2015 community version and it was taking forever to uninstall.  After waiting for few hours, I left it running overnight, but it was still busy uninstalling in the morning, for a total time of about 15 hours...when will this thing end?

I canceled it, but even that was taking time, so I killed the process.

Then I executed the following command to force uninstall it

vs_ultimate.exe /uninstall /force

If you have community version, you run vs_community but provide same arguments, which is what I did:

vs_community.exe /uninstall /force

Run the command from where the vs_community.exe or vs_ultimate.exe is located.  Look for it using dir vs_community.exe /s in C:\ drive

This uninstall was fast; everything took like 5 to 10 minutes.