How to pack files into exe and extract it at specified folder with NSIS? -


i wrote nsis-script creates exe wich creates new folder , copies files folder. there way include files exe?

name "first installer" outfile "firstinstaller.exe" installdir c:\dev\nsis\scripts\firstinstaller  section "move test.exe"     createdirectory $instdir\test     setoutpath $instdir\test     copyfiles $exedir\test.txt $exedir\test sectionend 

i want include test.txt exe! have start exe , test.txt extracted exe created folder!

name "first installer" outfile "firstinstaller.exe" installdir d:\dev\firstinstaller section "move test.exe" ;createdirectory $instdir\test setoutpath $instdir\test      ; extract exe content @ path, can specify other path  file  /r "d:\dev\test.txt"    ;used include file in exe sectionend 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -