tags:

views:

448

answers:

4

I want to wrap a existing msi installer file into NSIS installer executable. Because there is not any option to change the icon of the msi file. I just want to customize the icon of the output setup.exe. Along with this I would also want to make sure that NSIS does not add any extra user interface into my installer. Have anybody an idea to do this ? Thanks in advance.

A: 

You probably want to give this a try:
Program Icon Changer
Change exe icon - Icon Changer

There are probably free ones out there too, though I have yet to find one :P

o.k.w
You can't change the nsis icon without breaking the crc check. As far as free resource editors, there are several, google Resource Hacker for example
Anders
A: 

You're probably better off using 7-Zip for this purpose, it includes a module specifically for creating self-extracting installer files with no additional UI.

sascha
+1  A: 

The NSIS attributes you want are: Icon and SilentInstall

You execute a .msi by running msiexec.exe with ExecWait (Search NSIS forum and wiki for examples)

Anders
A: 

Just to change icon use an old utility called resource hacker

diego2k

related questions