Error Installing Visual Studio 2015 Enterprise Update 1 with Team Explorer

后端 未结 7 1978
庸人自扰
庸人自扰 2020-11-29 05:01

I am having the same problem everyone else is when installing Visual Studio 2015 with Update 1. It is failing on the Team Explorer install and as far as I can tell it is bei

7条回答
  •  余生分开走
    2020-11-29 05:14

    To make it easier, here is a batch file to do the clean up before installing Visual Studio 2015.

    @echo.
    @echo This will remove all files, directories and registry keys about VISUAL STUDIO 2015
    @echo.
    @pause
    
    rd "C:\Program Files (x86)\Microsoft Visual Studio 14.0" /S
    rd "C:\Program Files\Microsoft Visual Studio 14.0" /S
    rd "C:%homepath%\Documents\Visual Studio 2015" /S
    rd "C:%homepath%\AppData\Roaming\Microsoft\VisualStudio\14.0" /S
    rd "C:%homepath%\AppData\Local\Microsoft\VisualStudio\14.0" /S
    rd "C:%homepath%\AppData\Local\Microsoft\VSCommon\14.0" /S
    
    @echo.
    @echo Removing Registry Keys
    @pause
    
    REG DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0
    REG DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\14.0
    REG DELETE HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0
    REG DELETE HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0_Config
    
    @echo.
    @echo. FINISHED!
    @pause
    

    Just copy and paste it in a .bat files

提交回复
热议问题