Do you mean files that were extracted by generating a filename using GetTempFileName (or whatever its called) and then using the generated file name in a File statement? If so just delete them before the installer finishes using the standard file delete command. (this is the trick the plugin handling code has to do with the dlls, and is part of the reason I expanded the plugin support, it was a pain having the user have to be responsible for extracting and deleting temporary dll files)
Boy, I don't know.
I know that when I (a target user) runs a packaged EXE, I get a lot of NST*.tmp (I said nsi, but meant nst) files in my $temp folder (for me, it's c:\temp).
The installer (package.exe or whatever) seems to create these.
The installer always deletes the temp files that it create itself (GetTempFileName files should be deleted by you). You must have somehow created a temp file and forgot to delete it. If you attach the script we can have a look and try to help you with it.
Comment