Hi, I'm using visual studio 2005 beta 2. I created setup project and in the Custom Actions Editor I added a vbs file. This file is using the WScript.Shell Object. When I run the setup.exe on the target computer (windows xp sp2) I get the error message: "There is a problem with the Windows Installer Package. A script required for this install to complete could not be run. Contact your support personal or package vendor." If I just copy the .vbs file to the target computer and double click it, it's working fine. If I use the script without using the WScript.Shell Object it's working fine. The lines which make my troubles are:
dim obj set obj = WScript.CreateObject("WScript.Shell")