Search the web
Sign In
New User? Sign Up
makemsi · Build or Update MSI Databases
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2130 - 2160 of 2211   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2130
Hi All, This is my first try to MakeMsi. my goal is to generate a new msi with productCode & productName changed out of a old msi, and that these 2 MSIs can be...
beijinger007
Offline Send Email
Dec 3, 2007
8:41 pm
2131
Hi, ... side ... out ... There is another GUID (http://makemsi- manual.dennisbareis.com/guids.htm) you need to take care of ("UpgradeCode"). If you want to...
Dennis Bareis
dbareis
Offline Send Email
Dec 3, 2007
8:53 pm
2132
Hi all, Just a warning and for your information I will be going on holidays in 2 weeks for about a month. Over that time I may not have Internet access for...
Dennis Bareis
dbareis
Offline Send Email
Dec 7, 2007
6:26 am
2133
Hi All, I have a minor improvement to the DllCa-C macro: the location of the Platform SDK seems to always be identified by the environment variable INETSDK....
Kevin Keane
ipakleppa
Offline Send Email
Jan 1, 2008
7:05 pm
2134
Hi, Thanks for the information, I have included BOTH locations in the new code listed at: http://makemsi-manual.dennisbareis.com/platform_sdk_dir.htm Could you...
Dennis Bareis
dbareis
Offline Send Email
Jan 3, 2008
1:38 am
2135
Hi Dennis, Thanks for that quick change! It works! I believe these are actually different platform SDKs, although it seems that the Server 2003 Platform SDK is...
Kevin Keane
ipakleppa
Offline Send Email
Jan 5, 2008
11:24 am
2136
I need to include a variation of this sample. When I change this line: #define ProdInfo.Default.OnlyOn WORKSTATION WIN2000+ ;;I wish to reuse "TRYME.VER"...
pjwolfe41y
Offline Send Email
Jan 7, 2008
11:29 am
2137
Hi, I am new to MakeMSI, but not programming. I'm attempting what appears to be a simple task: Create an MSI that will remove an existing local profile and...
jonkinger
Offline Send Email
Jan 7, 2008
11:30 am
2138
Hi, While I haven't reproduced your package to test and generate a log, it would seem that you can take the custom action you have started and make a few...
Merl Schmits
ravenkall
Offline Send Email
Jan 7, 2008
1:44 pm
2139
I'm looking for a way to wrap an MSI in another MSI. Is this possible? Here is the situation I am trying to solve. I have an MSI (my own, generated by...
Kevin Keane
ipakleppa
Offline Send Email
Jan 7, 2008
4:28 pm
2140
What about running a custom action to "execute" the config file MSI after the main MSI runs? Joel From: makemsi@yahoogroups.com...
Hopper, Joel
dochopper
Offline Send Email
Jan 7, 2008
4:31 pm
2141
Merl, Thanks for the tip, it pointed me in the right direction! I realized that my batch file was just one line, so I made it an argument to cmd.exe in my...
Jonathan King
jonkinger
Offline Send Email
Jan 8, 2008
1:07 am
2142
Maybe this question is not strictly on topic here (because more MSI related than MakeMsi related), but maybe somebody has a proposal anyway!? My installation...
cbhb2
Offline Send Email
Jan 8, 2008
2:45 pm
2143
It seems to me that you may want to solve this within your application, rather than within the installer. After all, you would still have this problem if you...
Kevin Keane
ipakleppa
Offline Send Email
Jan 8, 2008
4:28 pm
2144
That would probably work (OK, I'd have to delay executing the config file MSI since Windows Installer can only handle one at a time, but that can be solved). ...
Kevin Keane
ipakleppa
Offline Send Email
Jan 8, 2008
4:33 pm
2145
Insert the config MSI as a file inside the programs MSI. Then set a custom action to run the Config MSI. I think that would work. Joel From:...
Hopper, Joel
dochopper
Offline Send Email
Jan 8, 2008
4:39 pm
2146
It would work, but it would require rebuilding the MSI for each individual customization. Since rebuilding this MSI takes about 7 minutes each time, doing just...
Kevin Keane
ipakleppa
Offline Send Email
Jan 8, 2008
4:55 pm
2147
This may be an odd scenario, but here is what we need... Our clients need to be able to use MAKEMSI without actually installing it. We also cannot permanently...
edcincy
Offline Send Email
Jan 8, 2008
9:20 pm
2148
Hi, If you look at the start of "mm.cmd" you will see the "setlocal" command, this ensures that none of the variables it sets are "permanent" but only "local"...
Dennis Bareis
dbareis
Offline Send Email
Jan 8, 2008
9:31 pm
2149
Hi there and hello Dennis, First I would like to thank the developers and contributors of MakeMSI. This tool is a good fit for me but I still have a lot to...
bruno.roger72
Offline Send Email
Jan 8, 2008
9:33 pm
2150
Hi, See this page: http://makemsi-manual.dennisbareis.com/reinstallmode.htm So basically add this line to the start of you script: #define...
Dennis Bareis
dbareis
Offline Send Email
Jan 8, 2008
9:46 pm
2151
Hi, There are limitations on one MSI installing another and generally not recommended. A transform is closest to what you want but these are normally external,...
Dennis Bareis
dbareis
Offline Send Email
Jan 9, 2008
4:22 am
2152
Thank you! This answer sounds to me like I am already at the "bottom" of the issue, i.e.: no "legal" way to do it! Which would be some "System Folder Property"...
cbhb2
Offline Send Email
Jan 9, 2008
1:01 pm
2153
A couple of thoughts before you give up: There's the CommonAppDataFolder property: (From Microsoft Documentation): The CommonAppDataFolder property is the full...
Merl Schmits
ravenkall
Offline Send Email
Jan 9, 2008
7:50 pm
2154
Thanks for your thoughts! ... application data for ... Well, this is what I am currently using, and what looks like the desired location I am looking for! But...
cbhb2
Offline Send Email
Jan 10, 2008
6:56 am
2155
Hi, ... Don't know, I will add specific dirs when suggested but for a user configurable item I have done enough now I think. ... I have updated the code to use...
Dennis Bareis
dbareis
Offline Send Email
Jan 11, 2008
1:59 am
2157
Hi, ... The sample has an issue which I have fixed, see new sample: http://makemsi-manual.dennisbareis.com/trymeaddversionkeywordandlaunchcondition_mm.htm I...
Dennis Bareis
dbareis
Offline Send Email
Jan 16, 2008
4:07 am
2158
I'd like to have the title and description be based on properties and overriddable via the command line. Is this possible? I've tried Title="[MYAPPNAME]" but...
schulzehewett
Offline Send Email
Jan 16, 2008
9:22 pm
2159
Hi, I try to figure out how to create a shortcut to a already installed program for some days now, but without full success. It does create a msi (it...
scachic
Offline Send Email
Jan 16, 2008
9:23 pm
2160
Hi, ... Have a read of: http://makemsi-manual.dennisbareis.com/database_tables.htm Then click on the "Shortcut" link, this is the information that an MSI ...
Dennis Bareis
dbareis
Offline Send Email
Jan 16, 2008
9:36 pm
Messages 2130 - 2160 of 2211   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help