Aide PDFCreator |
Why can't some scripts be executed under Vista (64 bit) / Windows 7 (64 bit)? VB scripts are executed under Vista (64 bit) / Windows 7 (64 bit) as 64 bit scripts. Some DLLs do not support 64 bits, so the script has to be run wit hthe 32 bit version of WScript.exe from the directory %SystemRoot%\SysWOW64 or the global Registry setting has to be changed:
"%SystemRoot%\System32\WScript.exe" "%1" %* to "%SystemRoot%\SysWOW64\WScript.exe" "%1" %* |