problem is the RMDir has no effect and the xxx directory still exists after the installation has completed. (the WEB-INF dir under xxx also exists). does anyone know what i am doing wrong?SetOutPath "$INSTDIR\webapps\xxx\WEB-INF"
CreateShortCut "$SMPROGRAMS\XXX Documents\Export or Import Database.lnk" \
"$INSTDIR\webapps\xxx\WEB-INF\guiexportimport.bat" \
"" \
"$INSTDIR\xxx.ico" 0 SW_SHOWNORMAL
; Remove directory created by SetOutPath
RMDir /r "$INSTDIR\webapps\xxx"
RMDir has no effect
Hi. My installer must create a shortcut to a file that does not yet exist. further more, the directory which eventually contains the file CANNOT exist after the installation. currently i am attempting to achieve this behaviour with the following script: