Skip to content
⌘ NSIS Forum Archive

external perl Fileby installation

3 posts

rrbs#

external perl Fileby installation

Hey,

i will make one part of the installation with perl file.

ExecWait '"$INSTDIR\kix\scripts\mssql3.pl -u $user -p $pwd -h Server"' $0
i get no return.

The perl-file import the 3 schema-files into the mssql database.

What's on the command wrong?

Is there another way the schema files in the database to import?

thanks

ralf
Anders#
Your quotes are wrong, double quotes on the path: ExecWait '"c:\foo\bar.exe" -param1 -param2'.

Also, executing a .pl file will probably not work and even if it does you get whatever random version the user has installed. If you are shipping the interpreter as part of your install you should execute it explicitly and pass the .pl file as a parameter.