Re: [WiX-users] Set Installdir

2006-08-10 Thread Jaap de Wolff
I do the same , I use After=LaunchConditions, which is about the first possible moment -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Alexander Gnauck Sent: donderdag 10 augustus 2006 10:39 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Set

Re: [WiX-users] Set Installdir

2006-08-10 Thread Alexander Gnauck
Hello, Jaap de Wolff schrieb: I do the same , I use After=LaunchConditions, which is about the first possible moment strange, i also tried this one and it didn't work for me. Here is my code: Property Id='INNO_INSTALLDIR' RegistrySearch Id=reg_read_innopath2 Key=... Name=... Root

Re: [WiX-users] Request for Advice regarding File Organisation

2006-08-10 Thread Dave Williamson
Bob, Thanks a bunch. I altered the test scenario to test what you said and reference counting did work as I had originally thought it did. I was unaware that the mechanism had changed along the way (whether that be since MSI infant or sometime as MSI evolved). Thanks for the input as this

Re: [WiX-users] Set Installdir

2006-08-10 Thread Bob Arnson
Alexander Gnauck wrote: works now if i put it in InstallUISequence. InstallUISequence Custom Action=SetInstallDir After=LaunchConditions/ /InstallUISequence What happens if the Install runs silent then without UI? It wouldn't work -- you need to put it in both the UI and execute

Re: [WiX-users] Shortcuts in MSI+MSM

2006-08-10 Thread William Miller
Hi Peter, Try using Target=[!MyProg.exe.MSM_GUID_HERE] or Target=[#MyProg.exe.MSM_GUID_HERE] I would recommend placing the shorcut in the merge file if possible to avoid any GUID changes down the road. Bill Miller -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

[WiX-users] Support for Vista parental settings

2006-08-10 Thread Magus
Is there any resources for making Wix check for Parental settings on a Vista machine? So to prevent a user who cannot play M rated games from even installing the game? -- View this message in context: http://www.nabble.com/Support-for-Vista-parental-settings-tf2085869.html#a5748350 Sent from

Re: [WiX-users] Possible MergeModule bug

2006-08-10 Thread Rob Mensching
Standard directories are a little bit different. The way they work is you add a GUID to them everywhere. You also need to make sure the WindowsFolder is listed in your Directory table for your Merge Module (which I think is probably the root of your bug). Then, during the merge process

Re: [WiX-users] Support for Vista parental settings

2006-08-10 Thread Derek Cicerone
No - but if you'd be interested in adding custom actions, I'm sure it would be a great addition to pubca. One interesting aspect about this for Vista is that most games will install to per-machine locations which will require admin privileges whereas most children accessing a computer should not

[WiX-users] Calling a custom action from a Dialog

2006-08-10 Thread Magus
I have a custom action dll that using a win32 dialog box, because I needed on the fly text in a scrollable text window. What I want done is for the actual Wix dialog box that follows (back button) to bring up that dialog anyone ever do this before? -- View this message in context:

Re: [WiX-users] Calling a custom action from a Dialog

2006-08-10 Thread Bob Arnson
Magus wrote: I have a custom action dll that using a win32 dialog box, because I needed on the fly text in a scrollable text window. What I want done is for the actual Wix dialog box that follows (back button) to bring up that dialog anyone ever do this before? You'd have to modify the