Adding additional files to an Inno based setup for a Netbeans application

半城伤御伤魂 提交于 2019-12-01 22:36:07
Rubinum

In Inno Setup there is a ScriptWizard which i recommend to use. After a few steps there comes this window:

NOTE: I use the application from Inno Setup. I got the Screenshot from there.

If you click on "Add files" you now can select your text file and it will be setup within your path.

If you don't want to use the wizard, you can add your additional files as entries in the [Files] section, like for instance:

[Files]
Source: "C:\path\to\your\text\file\you\want\to\add\to"; DestDir: "{app}"

Except listing one entry per file, you can add e.g. all files of a certain extension from a given directory.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!