Hi,
I would change the icon of a launcher.
The launcher is not mine, so I haven' the source code to recompile it again with the new icon.
Can I change the icon? I've tryed with many editors, but the operation always fails...
Thanks.
Change icon
9 posts
Try to use resource editor (http://www.angusj.com/resourcehacker/).
-Pawel
-Pawel
Maybe you could provide some more information. Is it a NSIS based launcher? A link to it?Originally Posted by Gluck View PostI would change the icon of a launcher.
The launcher is not mine, so I haven' the source code to recompile it again with the new icon.
Can I change the icon? I've tryed with many editors, but the operation always fails...
You can't normally patch a NSIS installer without getting a CRC warning.
Thanks for the answer, and sorry if I'm late...
@Pawel: I've tryed Resorce Editor too, Is one of the many that doesn't works...
@Anders: It's an old download, and I don't remember the link.
But I have the file, so I'lltry to updoad it.
It's a launcher for Cent Browser. I would change the fantasy icon in it with the original one.
@Pawel: I've tryed Resorce Editor too, Is one of the many that doesn't works...
@Anders: It's an old download, and I don't remember the link.
But I have the file, so I'lltry to updoad it.
It's a launcher for Cent Browser. I would change the fantasy icon in it with the original one.
I had problems to upload file...
If you change the icon in a NSIS installer then you must disable the CRC check by hex-editing the firstheader.
Thanks.
Ehm...
How can I disable the CRC check by hex-editing the firstheader?
Ehm...
How can I disable the CRC check by hex-editing the firstheader?
Change
00 00 00 00 EF BE AD DE 4E 75 6C 6C 73 6F 66 74
to
04 00 00 00 EF BE AD DE 4E 75 6C 6C 73 6F 66 74
in a standard installer. A silent installer might need to go from 2 to 6 instead.
00 00 00 00 EF BE AD DE 4E 75 6C 6C 73 6F 66 74
to
04 00 00 00 EF BE AD DE 4E 75 6C 6C 73 6F 66 74
in a standard installer. A silent installer might need to go from 2 to 6 instead.
Thanks.