Chelley
After creating the .msi file using ISCmdBld.exe, you need to use WiRunSQL.vbs (Windows Installer Run SQL) This is found in the directory (C:\Program Files\Microsoft SDK\samples\sysmgmt\msi\Scripts) after you've installed the Platform SDK from Feb 2003.
Simply add the following line to your .bat file
Cscript WiRunSQL.vbs Application.msi "UPDATE `Property` SET `Property`.`Value`='2.2.8' WHERE `Property`.`Property`='ProductVersion'"
It is important to use the right quotation marks because within the Property Table, there is also a Property Column. The table layout can be shown when you open the .msi file using ORCA.
If WiRunSQL spits any errors out, refer to information on msi errors which I found at
http://desktopengine...le=1&style=1002Hope this help you out.
Regards
Darren