I like MakeMSI. It's got a steep learning curve, general feeling is not very professional, but it turned out to give good results, plus it does not seem to depend on Visual Studio for anything.
Here's an example from which I just built an .msi (modified to remove branding):
gamename.mm:
#define? UISAMPLE_DIALOG_FILE_dlgbmp LeftSide.bmp ;;My replacement graphic for the left hand side (vertical) bitmap
#define? UISAMPLE_LEFTSIDE_TEXT ;;Disable "left side text"
#define? UISAMPLE_BITMAP_WHITE_BANNER PrettyBanner.bmp ;;Use "white.bmp" if you just want it plain
#define? UISAMPLE_BITMAP_BANNER_GRAPHIC gamename.bmp ;;The graphic on the right of the "UISAMPLE_BITMAP_WHITE_BANNER"
#define? COMPANY_PRODUCT_ICON ..\gamename.ico ;;Add-Remove (control panel) icon
#define? COMPANY_NAME Company Name
#define? DEPT_ARP_URL_PUBLISHER http://www.example.com/
#define? DEPT_ARP_URL_TECHNICAL_SUPPORT http://www.example.com/support
#define? DEPT_NAME Company Name
#define? DEPT_ADDRESS support@example.com
#define? COMPANY_CONTACT_NAME <$DEPT_NAME>
#define? COMPANY_CONTACT_NAME_PHONE ;;No phone
#define? COMPANY_SUMMARY_SCHEMA 110 ;;Minimum v1.1 Installer
#define? COMPANY_SUMMARY_AUTHOR <$DEPT_NAME>
#define? UISAMPLE_LEFTSIDE_TEXT_FONT_COLOR &HFFFFFF ;;White in BGR (believe it or not...)
#define? DBG_ALL N ;;Do not Add MAKEMSI debugging to "console file"
;--- Include MAKEMSI support (with customisations and MSI branding) ------
#define VER_FILENAME.VER gamename.ver ;;ver filename
#include "ME.MMH"
; #define MSI_SUMMARY_MSI_NAME_TITLE Blah
;--- Want to debug (not common) ---------------------------------------------
;#debug on
;#Option DebugLevel=^NONE, +OpSys^
;--- add files --------
#define SourceRootDir ..\bin\win32_dist
; <$MAKEMSI_MM_BASENAME>: filename of this mm, e.g. "gamename.mm"
<$DirectoryTree Key="INSTALLDIR" Dir="c:\program files\Game Name" CHANGE="\" PrimaryFolder="Game Name">
<$Files "<$SourceRootDir>\*.*" DestDir="[INSTALLDIR]\" SubDir="TREE">
<$Files "<$SourceRootDir>\data\*.*" DestDir="[INSTALLDIR]\data" SubDir="TREE">
<$Files "<$SourceRootDir>\Microsoft.VC90.CRT\*.*" DestDir="[INSTALLDIR]\Microsoft.VC90.CRT" SubDir="TREE">
<$DirectoryTree Key="MY_SHORTCUT_FOLDER" Dir="[ProgramMenuFolder]\Game Name" MAKE="Y" REMOVE="Y">
<$Shortcut Dir="MY_SHORTCUT_FOLDER" Target="[INSTALLDIR]\gamename.exe" Title="Game Name" Description=^Launch Game Name^ Arguments=^""^ WorkDir="INSTALLDIR" >
gamename.ver:
; ProductName = Game Name
; DESCRIPTION = Game Name
; Licence = gamename.rtf
; Installed = WINDOWS_ALL
; Guid.UpgradeCode = {DEADBEEF-DEAD-BEEF-DEAD-BEEFDEADBEEF} ; <=== GENERATE THIS
; MsiName = gamename
; repeat this as a changelog
;############################################################################
VERSION : 1.2.2
DATE : 11 May 2011
CHANGES : Initial build.
:
You also need to supply:
- LeftSide.bmp - 503x314 (empty except for left 160x314)
- PrettyBanner.bmp - 500x60
- gamename.bmp - 48x48
Files to distribute are specified with, for example:
<$Files "<$SourceRootDir>\*.*" DestDir="[INSTALLDIR]\" SubDir="TREE">
Build the MSI by right clicking on .mm and choosing the correct item.