Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio - Slow launching of quick find

Whenever I type in CTRL + F to launch the visual studio quick find it takes about 2 to 3 seconds to show.

This is really annoying and sometimes frustrating as I am used to start typing the search criteria instantly after launching the quick find and since it is still loading I generally start typing in the code by mistake...

This problem started occurring when I decided to switch to Visual Studio 2012. It did not occur on the previous versions...

Any help would be appreciated :)

like image 460
Kevin Vella Avatar asked Oct 24 '13 15:10

Kevin Vella


People also ask

Why does Visual Studio take so long to open?

To avoid extending startup time, Visual Studio loads extensions using an on demand approach. This behavior means that extensions don't open immediately after Visual Studio starts, but on an as-needed basis.

How do I fix Visual Studio running slow?

You might have extensions installed that slow Visual Studio down. For help on managing extensions to improve performance, see Change extension settings to improve performance. Similarly, you might have tool windows that slow Visual Studio down.

Why is Visual Studio so heavy?

This is mainly because Visual Studio has lots of components, extensions and tools. This includes: ASP.NET and web development.


1 Answers

I saw this advice on another website, maybe it will help you.

It would appear that other people are having the same problem.

Here is the MSDN documentation


Upon installing Visual Studio 2012, I found out that all operations related to TFS (such as adding a new file, check in/out, etc.) were incredibly slow and would freeze the application for quite some time. If this is the case for you, try this solution:

Edit the Visual Studio config file found in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe.config and locate the following line:

<system.net> 

Right below (above settings, NOT under), insert the following line of code:

<defaultProxy enabled="false" /> 

Your visual studio should now be more responsive!

like image 58
djdanlib Avatar answered Oct 06 '22 23:10

djdanlib