I am testing this script in the installer
It works on my desktop, but not in the installer under the commit node in custom actions.
I get the error, cannot execute the script required for the install
??
Thanks, Richard
It works on my desktop, but not in the installer under the commit node in custom actions.
I get the error, cannot execute the script required for the install
??
VB.NET:
set WshShell = WScript.CreateObject("WScript.Shell")
strOpstarten = WshShell.SpecialFolders("Startup")
set oShellLink = WshShell.CreateShortcut(strOpstarten & "\TrafficAlerter.lnk")
oShellLink.TargetPath = "C:\Program Files\Streamcast\TrafficLauncher\TrafficAlerter.exe"
oShellLink.WindowStyle = 3
oShellLink.IconLocation = "notepad.exe, 0"
oShellLink.Description = "TrafficAlerter"
oShellLink.WorkingDirectory = strOpstarten
oShellLink.Save
Thanks, Richard
Last edited: