Internet Explorer 8 을 설치했을 때 VS2005 에서 아래와 같은 에러가 나올 경우가 있습니다.
ParameterType.Value.length is null or not Object
이런 경우 해결책은 아래 사이트에 가면 있습니다.
http://blogs.msdn.com/vcblog/archive/2009/03/28/some-vs2005-and-vs2008-wizards-pop-up-script-error.aspx
요약 하면 이렇습니다.
Please follow the following steps:
- 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
그 뒤에 VS2005를 재실행합니다. VS2008에서도 같은 증상이 발생한다네요.
위 처럼 고치니 잘 되네요.


