> -----Original Message-----
> From: Andrew Black [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 25, 2006 10:56 PM
> To: [email protected]
> Subject: Re: [PATCH] Scripts, generating solution and
> projects for MSVC/ICC
>
> I am experiencing some strange behavior when attempting to
> run the generate.bat script on 64 bit windows XP after
> applying this patch. The behavior observed is as follows:
>
> D:\ablack\stdcxx>generate.bat /CONFIG:msvc-8.0
> /BUILDDIR:D:\ablack\stdcxx-build Solution generation script
> Checking arguments...
> Building directory tree created
> Checking consistence...
> Unable to create VCProjectEngine object: Could not create
> object named "VisualStudio.VCProjectEngine.8.0".
The place of fail:
try
{
VCProjectEngine =
WScript.CreateObject("VisualStudio.VCProjectEngine." + VERSION);
}
catch (e)
{
WScript.StdErr.WriteLine("Unable to create VCProjectEngine
object: " + e.message);
WScript.Quit(3);
}
Unfortunately, I don't have 64-bit Platform for testing the scripts.
Check, please, the presence of the
HKEY_CLASSES_ROOT\VisualStudio.VCProjectEngine.8.0 key in the registry.
If the MSVC8.0 is installed this key should be present.
Farid.