Archive: CopyFiles stealing focus


CopyFiles stealing focus
During my installation, the installer copies a 33MB file if it can be found on the harddrive. This action steals the focus, and let's say the user is writing an e-mail during this installation, and the installer steals the focus right when the user clicks enter. This makes the installer cancel the copying process and the user gets left without this very important file.

How do I stop NSIS from stealing focus here?


Use the /SILENT flag for CopyFiles and it shouldn't do that.


thanks!