Quote:
Originally Posted by KillerOh
BTW, peterf1999... There's something that annoy me a little in your custom MSI installers: The "box cover" as the "wizard big image", the same happening with your Bulletstorm's DVD9-2-2xDVD5 conversion. Is there some way to (us, normal and mere mortal humans) change that image? If yes, how?
|
1) Extract the streams and storages from MSI database:
Code:
msix Game.msi /out .\
2) Edit & save with images editor (Photoshop is so good

) the dialog and banner bitmaps:
Code:
Binary.WixUI_Bmp_Dialog
Binary.WixUI_Bmp_Banner
3) Remove the original stream files from MSI database (binary table):
Code:
msidb -d Game.msi -k Binary.WixUI_Bmp_Dialog
msidb -d Game.msi -k Binary.WixUI_Bmp_Banner
4) Add the new bitmaps files to MSI database (binary table):
Code:
msidb -d Game.msi -a Binary.WixUI_Bmp_Dialog
msidb -d Game.msi -a Binary.WixUI_Bmp_Banner