Visual Studio 2015 Enterprise with Update 3 설치시 계속 에러가 발생하여 설치가 되지 않는 상황이 발생했다.
해결책을 검색하다가 겨우 찾은 해결책...
아래 내용은 위 링크 페이지의 핵심 내용을 적습니다.
The actual solution
- Uninstall Visual Studio 2015 Enterprise from Programs and Features
- I also uninstalled the 2015 C++ runtimes and Entity Framework 2015 libraries as well
- Reboot machine if prompted
- Rename or delete folders-
- C:\Program Files (x86)\Microsoft Visual Studio 14.0
- C:\Program Files\Microsoft Visual Studio 14.0
- C:\users\user\Documents\Visual Studio 2015
- C:\users\user\AppData\Roaming\Microsoft\VisualStudio\14.0
- C:\users\user\AppData\Local\Microsoft\VisualStudio\14.0
- C:\users\user\AppData\Local\Microsoft\VSCommon\14.0
- Go to the registry editor (start >> run >> regedit) and remove/rename the following registries-
- HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0
- HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\14.0
- HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0
- HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0_Config
- close all your Visual Studio instances
- download Visual Studio 2015 Enterprise RTM not update 1
- Extract the .iso file by using an extraction tool, such as WinRar.
- Clear %temp% before going to start Visual Studio 2015 installation
- Install Visual Studio 2015 using this extracted setup installer
And... tada, the installation was finally successful! I hope this helps others that have a similar issue that isn't resolved by repairing the C++ runtimes alone.
Once RTM was installed successfully I was able to run the Update 1 installer and update successfully. Since then, I have also installed Update 2 with no issues.
Batch File
@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
행복한 고수되십시요. ^^
woojja ))*
\\\\\\\\\\\\\\\\\\\\\\\
파일 첨부 :
'Tools > VS' 카테고리의 다른 글
[VS] Visual Studio KeyBoard ShortCut (0) | 2016.03.02 |
---|---|
[VS] VisualStudio 2010 에서 CSS3 Validate 하기 (0) | 2013.02.27 |
[VS] VisualStudio 2010 Theme. (0) | 2013.02.25 |
[VS] How Can I Rebuild resx files? (0) | 2011.03.08 |