Which of my Visual Studio extensions are slowing down?

My Visual Studio 2012 began to open slowly. In "safe mode" it is fast. Some extensions are supposedly slowing down Visual Studio. What?

Is there an analogue of the Internet Explorer feature showing download times for each extension? http://blogs.msdn.com/b/ie/archive/2009/07/18/how-to-make-ie-open-new-tabs-faster.aspx

+5
source share
3 answers

You can start Visual Studio from the command line and specify the option /logso that Visual Studio writes all the data to ActivityLog.xml. These are not nice pop-up dialogs, but you can get the necessary information from there.

: http://msdn.microsoft.com/en-us/library/vstudio/ms241272.aspx

+2

, , ActivityLog.xml , . , . Python script,

import sys
from bs4 import BeautifulSoup
try:
    f = open(sys.argv[1])
except IndexError:
    f = sys.stdin

soup = BeautifulSoup(f)

loads = dict()

for entry in soup.find_all('entry'):
    description = entry.find('description')
    if not (description and "package load" in description.get_text() ):
        continue

    print(entry)
    print()
+3

All Articles