This information, such as Full Name and Street Address, is information I wish to ask the user for at the start of the installation process.
This could be done one of two ways:
- I could mark those areas in the file with some sort of unique code, like <FULLNAME>, then ask NSIS to do a search-and-replace routine on the file at install time, replacing <FULLNAME> with the user's input.
- I could leave those sections within the file empty, and tell NSIS to insert the user's input at specific locations in the file.
Which of these, if any, are possible with NSIS?