Archive: Changing the default icons


Changing the default icons
I am trying to change the default icons to something else. Currently I have to define them for every project. I tried setting them up in the nsisconf.nsi file, but it doesn't seem to work for me. Here is what I have in nsisconf.nsi:

Icon "C:\program files\nsis\icon123.ico"
EnabledBitmap "C:\program files\nsis\enabled123.bmp"
DisabledBitmap "C:\program files\nsis\disabled123.bmp"


For Icon files and BMP files, they need to be in the same directory as the .nsi file. It will not show if you do exact location. It sounds like you should have the icon/bmp files in the same place. If you are worried that you will replace the default NSIS icons, then just put them in a file and that is that.

-DJ