atm im using this script to create a backup of the former installation in $INSTDIR/Backup/. But I would like to prompt the installer for a directory after he choosed "YES" so the user can store it whereever he likes it. Is that possible and when...how?Section "test56" SEC01
MessageBox MB_YESNO|MB_ICONQUESTION|MB_SETFOREGROUND
"Should I create a backup?" IDYES true IDNO false
true:
RMDir "$INSTDIR\Backup"
CreateDirectory "$INSTDIR\Backup"
CopyFiles "$INSTDIR\*.*" "$INSTDIR\Backup\"
MessageBox MB_OK "Done!"
Goto next
false:
Goto next
next:
...
Vanessa