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 to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1981 - 2010 of 2228   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1981
Hello, I'm a freelance programmer who took a small assignment to make an installer. Having no experience in that field, I ran across MakeMSI and was pleasantly...
carg85
Offline Send Email
May 2, 2007
10:17 am
1982
Hi, Its probably best to create an immediate custom action to read the registry values and set properties appropriately, see: ...
Dennis Bareis
dbareis
Offline Send Email
May 2, 2007
11:17 am
1983
Hi, A few more answers... ... See PPWIZARD manual. ... and ... The custom action executes at install time... The MSI is built on your computer (build time). ...
Dennis Bareis
dbareis
Offline Send Email
May 3, 2007
2:56 am
1984
Hi ya, I decided to havecrack at it, no external CA required: #define BB_REGISTRY_DATA_HKEY HKLM #define BB_REGISTRY_DATA_KEY Software\ABCDEF ;--- Look for a...
Dennis Bareis
dbareis
Offline Send Email
May 3, 2007
4:46 am
1985
I am enjoying the MakeMSI tool, however I ran into a glitch. It is a great tool however as I just started using it and I have little experience with REXX and...
phlex.geo
Offline Send Email
May 3, 2007
10:36 pm
1986
Hi, ... Sorry I meant to say that it was untested but I was in a hurry. The test is wrong, change it to: ;--- Abort if no hole found.. ---- #( <$AbortIf ...
Dennis Bareis
dbareis
Offline Send Email
May 3, 2007
11:32 pm
1987
Hi, ... Easiest is to move the #data outside of your macro. However in your case this is not possible as yo want to pick up the parameters. MAKEMSI works ...
Dennis Bareis
dbareis
Offline Send Email
May 4, 2007
3:24 am
1988
Great, this last change got it working! <sigh of relief> Thanks a lot, Camille Dennis Bareis wrote: Hi, CF vd Berg wrote: Hello Dennis, thanks a lot for your...
CF vd Berg
carg85
Offline Send Email
May 4, 2007
9:14 am
1989
Thank you Dennis. Great idea. I'll give this a try and I'll let you know how it worked out. I am in turn trying to generalize your Regsitry Appending...
phlex.geo
Offline Send Email
May 4, 2007
3:43 pm
1990
Hi, ... Good to hear, I have made this an example in the doco, see: http://makemsi-manual.dennisbareis.com/trymeupdateregistry00_99_mm.htm Let me know if you...
Dennis Bareis
dbareis
Offline Send Email
May 5, 2007
1:26 am
1991
Dennis, Thanks for the reply. I have been re-directed this last week. I have been using MSIVAL2 and the MAKEMSI build does validate fine. I will take your...
Andrew Brandt
awbrandt2004
Offline Send Email
May 5, 2007
3:10 am
1992
Dennis, Just a little follow up, MAKEMSI has been a good MSI builder for me and it has worked out great. It is one of the few MSI builders that I have found...
Andrew Brandt
awbrandt2004
Offline Send Email
May 5, 2007
3:18 am
1993
Hi, there is still some text displayed in line 1 like: Custom Action "CACLS1.vbs" - ExecuteCACLS() How do I remove this text also? Thanks in advance. ... files...
gerbb400
Offline Send Email
May 7, 2007
9:44 am
1994
Hi, good to hear the work you did for me might also benefit others. Apart from customising it for my installer, I didn't need to make other changes. I'm...
CF vd Berg
carg85
Offline Send Email
May 7, 2007
6:52 pm
1995
... You are definately missing something. At install time a directory key becomes a property. See the "DIR" property of the "PropertyCa" command. There are...
Dennis Bareis
dbareis
Offline Send Email
May 7, 2007
9:52 pm
1996
Hi, Try using the description parameter. Bye, Dennis ... know ... Custom...
Dennis Bareis
dbareis
Offline Send Email
May 8, 2007
2:00 am
1997
Hi, if I use the CACLS to set file security like this: #define CACLS <$RunCmd {$?} ALIAS="CACLS" Command="CACLS.EXE" @="N"> #define /CACLS <$/RunCmd {$?}...
gerbb400
Offline Send Email
May 8, 2007
9:00 am
1998
Hi, I could now verify that the different Users Group names on different language systems are the problem, e.g.: on english OS the Users group is named Users, ...
gerbb400
Offline Send Email
May 8, 2007
9:58 am
1999
Hi, ... I believe that you can use the unchanging GUID. If that is not the case my only other suggestion is to google CACLS, you would not be the first to have...
Dennis Bareis
dbareis
Offline Send Email
May 8, 2007
10:25 am
2000
Hi Dennis, that's correct that I'm not the first one with that problem. Cacls can't be used with SIDs (sell known SIDs like S-1-5-32-545 for e.g. Users). So I...
gerbb400
Offline Send Email
May 8, 2007
11:16 am
2001
Hi Dennis, I found a script which gets the localized group name: ### strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer &...
gerbb400
Offline Send Email
May 8, 2007
11:33 am
2002
Hi, ... See the "VBSCA" command an schedule as immediate custom action which sets property with result. This can be used when setting securiry Bye, Dennis...
Dennis Bareis
dbareis
Offline Send Email
May 8, 2007
11:51 am
2003
Hi, RunCmd doesn' have a description parameter. Using VbsCaSetup there is a description parameter but it doesn't work. Thanks. Bye ... makemsi ... goes ... ...
gerbb400
Offline Send Email
May 8, 2007
2:38 pm
2004
Hi Dennis, this works. To share my code with the community, here it is: ### ;--- Setting security on test.txt ------------------------------------ ... ;---...
gerbb400
Offline Send Email
May 8, 2007
3:59 pm
2005
Dennis, I actually found a somewhat simpler workaround for this issue. I simply included the data segment in a "#(..#)" block and introduced a "<{nl}>"...
phlex.geo
Offline Send Email
May 8, 2007
6:59 pm
2006
Hi, That is a good workaround and both approaches are good examples and I've been thinking about where would be the best place for examples like this. Maybe a...
Dennis Bareis
dbareis
Offline Send Email
May 8, 2007
9:47 pm
2007
... Could you please send it to me zipped (or upload to makemsi group files area) to retain the formatting and Ill ad to manual. Thanks Dennis...
Dennis Bareis
dbareis
Offline Send Email
May 9, 2007
7:53 am
2008
Hi, ... Thanks for the info but I'm struggling to reproduce your success. "<{nl}>" wold appear to be a mistake perhaps produced by Yahoo groups, could you...
Dennis Bareis
dbareis
Offline Send Email
May 12, 2007
4:41 am
2009
Hi Dennis, I have wrapped standalone internet explorer 7.0 from wrapinstall command, but i am unable to install it i get the following error message : Custom...
Adnan
adnan_nameless
Offline Send Email
May 20, 2007
5:15 am
2010
Hi, ... Its worth reading: http://makemsi-manual.dennisbareis.com/bugs_support.htm You did not supply the OS, makemsi code or error code, the latter I think is...
Dennis Bareis
dbareis
Offline Send Email
May 20, 2007
8:23 am
Messages 1981 - 2010 of 2228   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