최고의 답변자
visual studio 2015 설치가 안되네요 ㅠ

질문
답변
-
https://msdn.microsoft.com/en-us/library/mt720585.aspx 문서를 하나씩 check 해보는 것은 어떨지요 .. 아래와 같은 언급도 있습니다. 확인해 보시는 것이 좋을 듯 합니다.
Uninstalling a current release of Visual Studio (or a Visual Studio Update) and then installing a previous release might not work as expected.The outcome depends on the which version or release of Visual Studio you have installed, which versions of its components are installed, which products are installed that might have dependencies either the Visual Studio release or its components, and finally, on which earlier Visual Studio version you plan to install or reinstall. Because of all these variables, a standard uninstall will often leave components behind that might not work with previous Visual Studio versions or releases.
Therefore, for best results, we recommend using the Visual Studio Uninstaller tool.
- 답변으로 표시됨 Boram YiModerator 2017년 1월 17일 화요일 오전 5:18
모든 응답
-
아마 Registry에 설치 정보가 등록되어있어 그런것 같습니다.
Regedit를 켜신다음에(run->regedit)HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DevDiv\vs\Servicing\14.0 <-- 요 key 삭제 또는 이름변경을 하시고 다시 설치 진행해보세요~
만약 위 방법으로도 해결이 되지 않는다면, 강제로 기존에 설치된 잔재들을 지워야 하는데요.
프로그램 추가 제거에 없다는 가정하에,
1) 임시 폴더내 파일 삭제
C:\Users\<username>\AppData\Local\Temp
보통 위 경로입니다.
cmd> echo %temp%
로도 확인할 수 있습니다2) 강제 삭제 command line 사용.
관리자 권한cmd를 실행시키 신 후에
C:\> dir /s vs_*.exe
...
C:\Users\All Users\Package Cache\{53792bfe-8999-461f-91ea-7877d6326f0d} 디렉터리2016-06-02 오전 08:29 2,405,496 vs_community.exe
이렇게 나옵니다. 그럼 저 경로에 들어가셔서
C:\Users\All Users\Package Cache\{53792bfe-8999-461f-91ea-7877d6326f0d}>vs_community.exe /uninstall /force
이렇게 강제로 삭제하는 방법을 시도해보세요.
문제가 해결되길 바랍니다.
-
위에 올려주신 해결방법이 전혀 통하지 않네요. 그리고 알려주신 경로중에서 C:\Users/<username>이라는 경로가 아예 존재하지를 않네요. User라는게 '사용자' 폴더인거 같은데 들어가면 username이라는 항목이 없습니다. 빨리 프로그램을 써야하는데 깔리지도 않고...전화연결도 안되고 답답하네요. cmd를 통해서 dir /s vs_*.exe를 치면 뭐가 나오긴 하는데 그 경로를 찾아들어가려고 해도 username자체도 없고 app data라는 항목도 없습니다. 검색을 해봐도 안나오네요. 다른방법은 없는건가요.
-
https://msdn.microsoft.com/en-us/library/mt720585.aspx 문서를 하나씩 check 해보는 것은 어떨지요 .. 아래와 같은 언급도 있습니다. 확인해 보시는 것이 좋을 듯 합니다.
Uninstalling a current release of Visual Studio (or a Visual Studio Update) and then installing a previous release might not work as expected.The outcome depends on the which version or release of Visual Studio you have installed, which versions of its components are installed, which products are installed that might have dependencies either the Visual Studio release or its components, and finally, on which earlier Visual Studio version you plan to install or reinstall. Because of all these variables, a standard uninstall will often leave components behind that might not work with previous Visual Studio versions or releases.
Therefore, for best results, we recommend using the Visual Studio Uninstaller tool.
- 답변으로 표시됨 Boram YiModerator 2017년 1월 17일 화요일 오전 5:18
-
1) 임시 파일 삭제
<usrname> 은 로그인 계정명입니다.
cmd.exe(관리자 권한으로 실행)에서 입력한 결과입니다.
C:\WINDOWS\system32>echo %temp%
C:\Users\Scott\AppData\Local\Temp <-- 여기 보시면 Scott 이 저의 <username>에 해당합니다.다음 명령을 치시면 임시 폴더가 열리실 껍니다.
C:\WINDOWS\system32>explorer %temp%
내용을 다 지워주시구요.
2) 강제 언인스톨
C:\WINDOWS\system32>cd /
C:\>dir /s vs_*.exe
...C:\Users\All Users\Package Cache\{53792bfe-8999-461f-91ea-7877d6326f0d} 디렉터리2016-06-02 오전 08:29 2,405,496 vs_community.exe
..
C:\>cd C:\Users\All Users\Package Cache\{53792bfe-8999-461f-91ea-7877d6326f0d}
C:\Users\All Users\Package Cache\{53792bfe-8999-461f-91ea-7877d6326f0d}>vs_community.exe /uninstall /force저의 경우는 vs_community.exe(visual studio community 2015 버전이 설치되어 이렇게 나옵니다.
enterprise로 설치하셨다면, vs_enterprise.exe 경로가 나올것입니다. 해당 경로로 이동(cd 명령)하셔서 강제 삭제하도록 해보세요.
- 편집됨 Scott Park 2017년 1월 9일 월요일 오전 4:15
- 답변으로 제안됨 Boram YiModerator 2017년 1월 17일 화요일 오전 5:19