Extern Files in nsis exe
I am new in nsis. I made an installer but I can´t put the files in the same file of the installer. It is just coping from a place to another. Can you help me?
5 posts
When your installer quits, the folder in the $PLUGINSDIR variable will be removed including all files it contains.
InitPluginsDir ; This initalizes a temp dir
; Now copy Java Runtime installer to tempdir
File "/oname=$PLUGINSDIR\jresetup.exe" "path to setup on the compiling pc.exe"
ExecWait "$PLUGINSDIR\jresetup.exe"
Or I´ll have to copy it to a temp dir, execute it and delete?exactly.