Great! I downloaded the update and it works! Thank you... I am basically clueless regarding MSI, so, if this next question is just too dumb, please forward me...
Hi, ... Look at the MAKEMSI doco page: http://www.labyrinth.net.au/~dbareis/makemsi/samplemsiexeccmdlines.htm There are some links to the MSIEXEC comamnd line....
I read the "Commands" reference and it does not look like there are any built-in commands to create a simple dialog box; for example, a command that lets me...
Hi, ... I have not yet needed to create my own dialog "panel", I don't think a checkbox is difficult, radio buttons look trickier... What I would do is choose...
Hi . I'm new to creation of installation softwares.But i want to use Windows Installer from the SDK and create a .msi file. Dennis replied to the message i...
Hi, ... Well the first few sections are reasonably basic. If you have a recent MAKEMSI, install it, right click on "tryme.mm" and select the build option....
Hi Dennis Thanx fer the starter course:-) I’ve been trying for the past 2 days to get the hang of windows installer.Finally, I’ve been able to create a...
... installer.Finally, I've been able to create a small prototype. ... project (which I want to deploy) is daunting me!More so since I HAVE to get this done by...
Ok, I've looked in all the documentation I could find and even looked through the MMH file source code, but I can't find it. Where is it packaging the HTML...
Hi, ... ;--- Stop HTML Generation --- #define ONEXIT_DONT_GENERATE_HTML in your version of "dept.mmh" (I assume that is what it is), before including any...
Thanks for the response and basically setting me straight... ;) ... Cool, I'm going to have to look at more of these little "flags" nad "play" with them, just...
Dennis, I found a bug for you and squashed it... Change the following in the COMPILE.mmh to fully turn off the HTML report generation and inclusion in the MSI...
I'm still doing some bug hunting, because the MSI is still trying to install the HTML report even though it wasn't in the CAB file. Maybe you could help me...
Hi, ... There are "millions" of these, however I am gradually going off using "#ifndef" or "#ifdef" as the use of these is not as flexible as the alternative,...
Hi, ... I'm now thinking that a better solution would be to define: #define? COMPANY_ADD_GENERATED_DOCO to disable the adding of the HTML to the MSI, the HTML...
Got the basic script to work, started to work with features and components and their seems to be some issues with the VBS generation thereof. Appears that...
Hi, ... The "</$Component>" bit should be "<$/Component>". MAKEMSI basically works by generating VBSCRIPT which is run to do most of the work, this is also why...
lol, thanks for the quick answer. Getting too used to XML syntax - missed that typo ;) By the way, loveing the simplicity of makemsi so far, plus the fact that...
Hi, ... Add the following 3 lines somewhere before including a MAKEMSI supplied header: #define COMPILE_TYPE <$COMPILE_CAB_EXTERNAL_WITH_MSI> ;;Want...
Install msiexec /i TryMe.msi /qn Remove msiexec /x TryMe.msi /qn Question: How do I remove the pacakge by program name without reference to TryMe.msi ? Is...
1. How can I make TryMe.mm to create a menu item in Start->Programs ? 2. How can I inlcude a sub directory to be installed under c:\Program Files\TryMe(makemsi...
Hi, ... I have tried to keep the example very simple but most people will want at least some sort of shortcut so my "TryMe.MM" now looks like: ;--- Load...
Hi, ... The "/x" takes a product code so something like the following is better: MsiExec.exe /x {0E24A6B0-B16E-4D1B-A137-6023EC435D14} ... Don't know what that...
... Thanks. now the question is how can I list out product code of all installed program. Goal is to be able to remove applicatoin in a dos prompt. ... To find...
In your next MakeMSI release, IMHO, I think the existing TryMe.mm can be renamed as TreMe1.mm the following code in your reply can be TreMe2.mm and TreMe3.mm ...
Is there a plan to have MakeMSI documents in PDF book format ? So we can get TOC, index ...etc. I believe MakeMSI is good enough to deserver the trouble to...