I want to write an NSIS installer that scans a particular folder of the users file system, and adds a Section for each entry:
FindFirst $0 $1 $DOCUMENTS\Special
loop:
StrCmp $1 "" done
; Add section here!
FindNext $0 $1
Goto loop
done:
FindClose $0
However, I can't find a way to dynamically add sections. Is that possible?