如何将文件打包到exe中并使用NSIS将其提取到指定的文件夹中?

时间:2017-09-12 08:58:55

标签: nsis

我编写了一个NSIS脚本,它创建了一个exe文件,创建一个新文件夹并将文件复制到该文件夹​​中。有没有办法将文件包含在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

我现在想将test.txt包含在exe中!现在你只需要启动exe并将test.txt从exe中提取到创建的文件夹中!

1 个答案:

答案 0 :(得分:2)

double