Forum: NSIS Discussion
29th November 2008, 09:48
|
|
Replies: 1
Views: 1,260
Re: cannot read file from $TEMP :(
Sorry, I solved. "source" statement was missing with in my ExecWait string. It must be like:
ExecWait '"$DESKTOP\mysql.exe" --user=$username --password=$password --execute="source $TEMP\file.sql"...
|
Forum: NSIS Discussion
29th November 2008, 08:13
|
|
Replies: 1
Views: 1,260
cannot read file from $TEMP :(
Hi
I have a script that prompts user some values and execute a file's content like this:
SetOutPath "$TEMP"
SetOverwrite on
File 'file.sql'
ExecWait '"$DESKTOP\mysql.exe" --user=$username...
|