Re: [WiX-users] Keep files after uninstall

2006-08-03 Thread Alexander Gnauck
Hi Rob and Rob, Thanks, that is exactly what i needed. I will leave only 1 database file. Our customers often uninstall the old version if they update and forget to backup their databases. Alex Rob Mensching schrieb: > Rob is right. Permanent is better than absent GUID because you can still

Re: [WiX-users] Temporary Directory

2006-08-03 Thread Magus
What I need done is to have Dsetup.exe to run. But it requires dsetup.dll and some .cab's. I keep getting an erro saying it doens't know where the dsetup.dll is. I thought of must making them components and just running a cleanup and deleting them after I used them but I am required not to do it

Re: [WiX-users] Temporary Directory

2006-08-03 Thread Derek Cicerone
Custom actions are extracted to Windows\Installer as they are run. Other binary entries are treated differently (they may not even be extracted to a temp location). In general, you cannot use any information about what MSI does with the binaries in your setup because it may change in the future.

Re: [WiX-users] Temporary Directory

2006-08-03 Thread Rob Mensching
Unknown. Not documented. Maybe nowhere... could be used straight out of the MSI. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magus Sent: Thursday, August 03, 2006 5:26 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Temporary Directory

[WiX-users] Temporary Directory

2006-08-03 Thread Magus
when using a entry where does it put those temporary files when the program is running? -- View this message in context: http://www.nabble.com/Temporary-Directory-tf2048729.html#a5642998 Sent from the wix-users forum at Nabble.com. -

Re: [WiX-users] ScrollableText Control type

2006-08-03 Thread Rob Mensching
http://blogs.msdn.com/robmen/archive/2006/05/30/610950.aspx       From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson Sent: Thursday, August 03, 2006 4:19 PM To: Magus Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] ScrollableText Control type

Re: [WiX-users] rfc: Package element changes

2006-08-03 Thread Tony Hoyle
Jeremy Farrell wrote: > I agree totally. As far as I'm concerned this is a useful feature. I > want to be sure the ProductCode changes every time, to ensure that it is > impossible to do anything other than major upgrades. This may be an > unusual requirement, but it's a valid one and I shouldn'

Re: [WiX-users] group policy

2006-08-03 Thread Bob Arnson
Please keep wix-users on the thread so everyone can participate. Standa Kunc wrote: There are no dialogs in my setups so I suppose they support silent installation. Or is there anything else needed to create silent installation? Some checklist for silent installation? If you use stan

Re: [WiX-users] ScrollableText Control type

2006-08-03 Thread Bob Arnson
Magus wrote: OK I've been having a really bad time with this. For some reason it won't display anything. I want it to display information form a .txt file since its a lot smaller than a .rtf I have'nt really seen anywhere that says this won't work and in all the other controls it works ju

Re: [WiX-users] WixUI_Minimal without license agreement

2006-08-03 Thread Bob Arnson
Scott Sam wrote: I want to use the Minimal wixui because I want the user to be able to just click next and have the install go, but I don’t want eula in it.  Is there any way to use the regular welcomeDlg in place of the WelcomeEulaDlg.  I get an error 2803 when I click the next

Re: [WiX-users] rfc: Package element changes

2006-08-03 Thread Derek Cicerone
Title: RE: [WiX-users] rfc: Package element changes Thanks for the feedback Jeremy.  I think that’s a valid concern, so the warning idea is definitely out.  So it sounds like the decision is basically between using * or lots of question marks.  If people feel that the star syntax is clearly

Re: [WiX-users] rfc: Package element changes

2006-08-03 Thread Jeremy Farrell
Title: RE: [WiX-users] rfc: Package element changes From: Bob Arnson Sent: Wed 8/2/2006 8:44 AM > > Derek Cicerone wrote: > > I've done some more thinking about this.  I think Rob's main objection with > > making Product/@Id optional was that someone might accidentally forget to > > specify i

[WiX-users] ScrollableText Control type

2006-08-03 Thread Magus
OK I've been having a really bad time with this. For some reason it won't display anything. I want it to display information form a .txt file since its a lot smaller than a .rtf I have'nt really seen anywhere that says this won't work and in all the other controls it works just fine. Is there

Re: [WiX-users] WixUI_Minimal without license agreement

2006-08-03 Thread Scott Sam
This is for a product we hope to release in the next month, so we are using wix 2.0 right now.  Is there any way to do this with wix 2.0?   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Derek Cicerone Sent: Thursday, August 03, 2006 2:58 PM To: 'Brian Beaudet'; wi

Re: [WiX-users] WixUI_Minimal without license agreement

2006-08-03 Thread Scott Sam
I got it working for the feature_tree one.  You have to remove the dialogref for the licenseagreementdlg.  Then delete these lines:   Then change this line To And change this line to   And make sure you add the dialogref   But the minimal one seems to work differen

Re: [WiX-users] WixUI_Minimal without license agreement

2006-08-03 Thread Derek Cicerone
I’m surprised Bob hasn’t responded to this yet J   I’m not sure how it works in WiX 2.0, but in 3.0, doing something like this should be very easy since we moved all the dialog flow into one file apiece for each of the dialog packs (mondo, minimal, etc…).  You can just take the single fil

Re: [WiX-users] WixUI_Minimal without license agreement

2006-08-03 Thread Brian Beaudet
Scott,   I have the same concern except that I'm referencing the WixUI_FeatureTree.  I should say that I'm still working my way through the tutorial so the answer may be in there but I'd sure like to hit the "easy" button and find a way to make the license screen disappear.  My installer is

Re: [WiX-users] Restrictions on API used in MSI

2006-08-03 Thread Chesong Lee
Use MsiBreak environment variable instead. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/debugging_custom_actions.asp Chesong Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Magus Sent: Thursday, August 03, 2006 1:23 PM T

[WiX-users] Restrictions on API used in MSI

2006-08-03 Thread Magus
Are there any restriction on API used in MSI Custom Actions. When trying to use DebugBreak() the program all together stopped running -- View this message in context: http://www.nabble.com/Restrictions-on-API-used-in-MSI-tf2046924.html#a5636897 Sent from the wix-users forum at Nabble.com. ---

Re: [WiX-users] Performance issues

2006-08-03 Thread Derek Cicerone
Title: Performance issues What are the install times like if you disable system restore?  Apparently MSI installations take a large up-front hit while loading on system restore and disabling it (assuming you don’t use it), can speed things up quite a bit.   Derek   From: [EMAIL

[WiX-users] WixUI_Minimal without license agreement

2006-08-03 Thread Scott Sam
I want to use the Minimal wixui because I want the user to be able to just click next and have the install go, but I don’t want eula in it.  Is there any way to use the regular welcomeDlg in place of the WelcomeEulaDlg.  I get an error 2803 when I click the next button when I tried just cha

Re: [WiX-users] Calling custom actions in Merge Modules

2006-08-03 Thread Derek Cicerone
You should not be referencing a custom action from a merge module in a main installation.  Who wrote the custom action?  If its yours then you should use wixlib files instead of merge modules.  If its not yours, whoever did write it should have made it a table-driven custom action.   Dere

Re: [WiX-users] Performance issues

2006-08-03 Thread Simon Topley
Title: Performance issues Preaching to the choir there, we were using an old shonky none msi version of installshield. It clearly did less work, it's just hard explaining that to users/support staff, when all they see is the end result. With the previous version the guy who wrote it put a mil

Re: [WiX-users] Performance issues

2006-08-03 Thread Rob Mensching
Title: Performance issues Now that you have these comparisons, I suggest generating a verbose log file and seeing where your time is spent in the Windows Installer.  Each action has a start and stop so that should be pretty easy.  You may find something surprising (like a CustomAction takin

Re: [WiX-users] Performance issues

2006-08-03 Thread Rob Mensching
Title: Performance issues When you say you’ve replaced InstallShield with the WiX toolset, what version of InstallShield did you replace?  I ask because the non-MSI versions of InstallShield used a scripting engine to do the install.  That engine (as I’ve been told) doesn’t do nearly the sa

Re: [WiX-users] Keep files after uninstall

2006-08-03 Thread Rob Mensching
Rob is right. Permanent is better than absent GUID because you can still patch the files. However, be very careful about what you leave behind. It would be very, very bad to leave behind files that could have security exploits in them. Nobody would know to patch them. -Original Message---

Re: [WiX-users] installing fonts via msi

2006-08-03 Thread Bob Arnson
Simon Porter wrote: I'm trying to put together a simple msi that will install a bunch of fonts that I can then deploy using active directory. The problem I'm getting though is when I run the setup program it complains that it couldn't register the fonts and to check I have sufficient permiss

[WiX-users] Keep files after uninstall

2006-08-03 Thread Alexander Gnauck
Hello, What is the correct way of installing files which i don't want to uninstall later, or only uninstall with a custom action (eg. important databases). I read that files in a component without GUID will not be uninstalled. Is this the way to go? Thanks Alex --

[WiX-users] Calling custom actions in Merge Modules

2006-08-03 Thread Stuart Cullen
Hi   I have a merge module that I created including all the files for a product, including the exe.   I now want to launch that exe at the end of my main wix project. I have tried using a custom action which was created in the merge module as below   Re: [WiX-users] group policy
Standa Kunc wrote: > I would like to create msi package (executable, shortcuts, file > association) and use it with Group Policy in MS Windows Server 2003. > Both server and client (MS Windows 2000) are running under Virtual PC > (this should not be problem). I just can not do it properly. > > Coul

Re: [WiX-users] Performance issues

Title: Performance issues InstallShield versions were compressed yes, I ran some tests and here are the results (as accurate as I can get them):   Installsheild Versions: Product Size Install Time Floodwork  

Re: [WiX-users] Performance issues

Title: Message FWIW I noticed when testing an MSI on our XP Embedded units that MSIs w/ compression installed noticibly slower than the same component set w/o compression.  We install ~200+ files in various binary and text formats.   _Bob Rafuse -Original Message-From:

Re: [WiX-users] Performance issues

Title: Performance issues Simon Topley wrote: I'm sure this is a problem others have encounted. I have now replace our suite of installsheild products with spanky new WIX versions. I have managed to elimitnate a large amount of redundant code (previous installers copied large amount

[WiX-users] group policy

Hello, I would like to create msi package (executable, shortcuts, file association) and use it with Group Policy in MS Windows Server 2003. Both server and client (MS Windows 2000) are running under Virtual PC (this should not be problem). I just can not do it properly. Could someone provide me e

[WiX-users] setting up caspol policy

I want to set up caspol policy for .net 2.0, if they are installed on the target machine. I have this to check if it is installed. Then I use this custom action to execute it. I'm getting this error in the log file. Action 9:36:00: CreateCaspol20CA. MSI (s) (00:50) [09:

Re: [WiX-users] Keep files after uninstall

That's true, but I prefer to set [EMAIL PROTECTED]"yes". That way you can still specify a GUID and track it, patch it, etc. Rob Alexander Gnauck wrote: > Hello, > > What is the correct way of installing files which i don't want to > uninstall later, or only uninstall with a custom action (e

Re: [WiX-users] Another question about MSM

Yes, You are absolutely wright! That is the problem... Thank You Best regards, Peter G. Sakhno C-MAP RUSSIA Ltd http://www.c-map.ru/ Chesong Lee wrote: > You may have to check if your custom action function has a correct function > prototype: > > extern "C" > __declspec(dllexport) > UINT __st

[WiX-users] Performance issues

Title: Performance issues Good morning to the Brotherhood/Sisterhood, I'm sure this is a problem others have encounted. I have now replace our suite of installsheild products with spanky new WIX versions. I have managed to elimitnate a large amount of redundant code (previous installers copi