我编写了一个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中提取到创建的文件夹中!
答案 0 :(得分:2)
double