for instance this code:
# define installer nameit does remove the test.txt file afterwards, but uninstall.exe remains.
outFile "installer.exe"
# set desktop as install directory
installDir $DESKTOP
# default section start
section
# define output path
setOutPath $INSTDIR
# specify file to go in output path
file test.txt
# define uninstaller name
writeUninstaller $INSTDIR\uninstaller.exe
# default section end
sectionEnd
# create a section to define what the uninstaller does.
# the section will always be named "Uninstall"
section "Uninstall"
# now delete installed file
delete $INSTDIR\test.txt
# and the uninstaller
delete $INSTDIR\uninstaller.exe
RmDir $INSTDIR
sectionEnd
also, is notepad the only way to edit these scripts or is there a better editor that can highlight the keywords, etc?