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
Post a Comment