Archive: install with File /a /r "myFiles\*.*", how to uninstall


install with File /a /r "myFiles\*.*", how to uninstall
I use the following line to tell my installer what files to install, which includes several sub folders and their contents.
File /a /r "Files\*.*"

My folder tree with all its files does get duplicated during installation.

Can someone please point me to an example script that shows how to get the uninstaller to only delete files that were installed by the installer?

Thanks,

Brian Murphy


If you are looking to remove the whole directory then try this:

RmDir /r "$INSTDIR"


but you should know there are dangers in using it

http://forums.winamp.com/showthread....hreadid=289986

@ xlrotor Advanced Uninstall Log might help you.