만약 Visual Studio 2008이나 2005에서 프로젝트 생성시 "Project Creation Failed" 이런 문구가 나오고 프로젝트 생성이 되지 않는다면... IE8 문제일 것 이다.
해결 방법은 아래와 같다.
- Open regedit (on a 64-bit OS, open the 32-bit regedit)
- Under “HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Internet Settings\Zones”, create a new key called 1000 (if it isn't already there)
- Under 1000, create a DWORD entry with:
o Name = 1207
o Type = REG_DWORD
o Data = 0x000000
위의 단계대로하고 저장한 뒤 다시 VC를 실행시키면 프로젝트 생성이 될 것이다.
그래도 안된다면....
1) Navigate to: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE in Windows Explorer
2) Load devenv.exe.config in your favorite text editor.
3) Find this string: “Microsoft.VisualStudio.TemplateWizardInterface”
4) Comment out the element so it looks like this:
5) Restart Visual Studio 2008.
이렇게 해보시길...
자세한 사항은 아래 링크 참조...
http://blogs.msdn.com/vcblog/archive/2009/03/28/some-vs2005-and-vs2008-wizards-pop-up-script-error.aspx
http://developerspoint.wordpress.com/2008/06/25/how-to-deal-with-project-creation-failed-problem-of-visual-studio-2008/

