Visual Studio 2015 does not start

后端 未结 9 1070
后悔当初
后悔当初 2021-02-01 02:35

We have installed Visual Studio 2015 Professional on Windows 7. It was working fine. But after we installed updates from the menu Tools-->\'Extensions and Updates\' today the Vi

9条回答
  •  不知归路
    2021-02-01 03:02

    After trying the other solutions in this thread, what finally worked for me was:

    From an elevated Command Prompt, navigate to "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE".

    Execute:

    devenv.exe /Log C:\temp.log

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

    The log should contain a matching set of Begin and End entries for every extension:

    Begin package load ...
    ...
    End package load ...
    

    If the last extension is missing the End package load entry, you need to uninstall that extension.

    Execute:

    devenv.exe /SafeMode

    https://msdn.microsoft.com/en-us/library/ms241278.aspx

    Go to "Tools -> Extensions and Updates" and uninstall the offending extension.

    Exit VS. Start VS as normal. In case it still doesn't work, repeat the procedure.

提交回复
热议问题