Visual Studio 2015 Enterprise with Update 3 설치시 계속 에러가 발생하여 설치가 되지 않는 상황이 발생했다.


해결책을 검색하다가 겨우 찾은 해결책...



http://stackoverflow.com/questions/34889317/error-installing-visual-studio-2015-enterprise-update-1-with-team-explorer




아래 내용은 위 링크 페이지의 핵심 내용을 적습니다.

The actual solution

  1. Uninstall Visual Studio 2015 Enterprise from Programs and Features
    • I also uninstalled the 2015 C++ runtimes and Entity Framework 2015 libraries as well
  2. Reboot machine if prompted
  3. 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
  4. 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
  5. close all your Visual Studio instances
  6. download Visual Studio 2015 Enterprise RTM not update 1
  7. Extract the .iso file by using an extraction tool, such as WinRar.
  8. Clear %temp% before going to start Visual Studio 2015 installation
  9. 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 ))*

\\\\\\\\\\\\\\\\\\\\\\\


 

파일 첨부 :

install.bat

 

반응형

'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

 

아직 못외운데다 정리해 놓은 사이트가 있어서... ^^;

 

http://automatetheplanet.com/19-must-know-visual-studio-keyboard-shortcuts-part-1/

http://automatetheplanet.com/19-must-know-visual-studio-keyboard-shortcuts-part-2/

 

Project Related Keyboard Shortcuts
Ctrl + Shift + B Build your project.
Ctrl + Alt + L Shows Solution Explorer.
Shift + Alt + C Add new class.
Shift + Alt + A Add new item to project.
Editor Related Keyboard Shortcuts
Ctrl + Enter Insert blank line above the current line.
Ctrl + Shift + Enter Insert blank line below the current line.
Ctrl + Space Autocomplete using IntelliSense.
Alt +Shift +arrow keys Select custom part of the code.
Ctrl + } Match curly braces, brackets.
Ctrl + Shift + } Select text between matched braces, brackets.
Ctrl + K, Ctrl + D Do proper alignment of all the code.
Shift + End Select the entire line from start to end.
Shift + Home Select the entire line from end to start.
Ctrl + Delete Deletes the word to the right of the cursor.
Navigation Related Keyboard Shortcuts
Ctrl + Up/Down Scrolls the window without moving the cursor.
Ctrl + – Take cursor to its previous location.
Ctrl + + Take cursor to its next location.
F12 Go to definition.
Debugging Related Keyboard Shortcuts
Ctrl + Alt + P Attach to process.
Shift + F5 Stop debugging.
Ctrl + Alt + Q Add quick watch.
Search Related Keyboard Shortcuts
Ctrl + K Ctrl + K Bookmark the current line.
Ctrl + K Ctrl + N Navigates to next bookmark.
Ctrl + . If you type in a class name like Collection<string> and do not have the proper namespace import then this shortcut combination will automatically insert the import.
Shift + F12 Find all references.
Ctrl + Shift + F Find the references of the selected item in the entire solution.

 

행복한 고수되셔요~

 

woojja ))*

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

반응형

요즘 VisualStudio2010 을 이용하여 Web Application 을 개발하고 있습니다. (UI 는 하지말라고~~ 말라고 하는 충고는 저~ 멀리 가버렸어요... ㅋㅋ)

 

그리고 Warning 탭에 CSS2.1 Warning 이 눈에 거슬리기 시작했습니다.

CSS 3 Validation 을 사용해야하겠구나 라는 생각이 들었죠.

그래서 구글링!

단박에 나오는군요.

 

 

VisualStudio 2010 Extention Tool 에 있군요.

CSS 3 Intellisense Schema

 

 

설치하고 VisualStudio 를 재시작하니 CSS 3.0 이 나타나는군요. ^^

 

선택하니 Warning 이 확!!! 줄었습니다.

시원한 이 느낌... ㅋㅋ

9개가 남아있긴 한데...

제게는 너무 힘든? 과제가 아닌가 하여 추후의 숙제? 남겨두기로 했습니다. ㅋㅋ

 

 

행복한 고수되십시요.

woojja ))*

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

반응형

'Tools > VS' 카테고리의 다른 글

[VisualStudio] VisualStudio 2015 설치시 Error  (0) 2017.01.20
[VS] Visual Studio KeyBoard ShortCut  (0) 2016.03.02
[VS] VisualStudio 2010 Theme.  (0) 2013.02.25
[VS] How Can I Rebuild resx files?  (0) 2011.03.08

기존에 Visual Studio 에 Theme 를 적용해서 사용하고 있었는데

옆의 팀장님이 갑자기 Theme 적용해서 사용하면 눈이 좀 편하냐고...

 

그래서 알려드렸다.

필요한 분도 있으시리라~ 생각하고 올려본다.

 

스캇 헤이즐만 씨의 사이트다.

Visual Studio Programmer Themes Gallery

(하지만 자신의 입맛에 딱 맞는 것은 없다.)

나는 현재 Ragnarok 를 수정해서 사용하고 있다.

 

그리고 더 많은 테마를 보고 싶거나 테마를 직접 만들고? 싶다면 (그러지 마시길... 그냥 감사해 하며 사용하시죠~ ㅋㅋ)

http://studiostyl.es/

이 곳에 가보시라...

 

 

행복한 고수되십시요.

woojja ))*

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

반응형

+ Recent posts