this is a tricky thing I've been asked to do, and I don't even know if it's possible in NSIS:
The installer should ask for an install path, and then install a file under the given folder but with different name suffixes.
For example, test.exe should become test_a.exe, test_e.exe, ..., test_z.exe.
(Actually it's even hader because I must install different group of files, but for simplicity let's suppose one file only, the main problem should be the same)
Easy till here, now comes the difficult part:
The "a", "e", .. "z" strings should be taken from an ini file which is in the same folder as the setup program, for example containing something like
The number of copies is not known at NSIS compile time, but is found in the INI file.
suffix_1=a
suffix_2=e
.
.
suffix_<n>=z
I searched for loop constructs in NSIS but couldn't find any, do you think the above stuff can be done?
Thank you,
Mario