[WiX-users] Silent Custom Installation

2007-07-09 Thread Srinivas Tirupati
Hi, I have a features structure like RootFeature --- ParentFeature1 --- Feature11 --- Feature12 ParentFeature2 --- Feature21 --- Feature22 And I installed the product using this command ( silent installation ) Msiexec /i /qn ADDLOCAL=ParentFeature1 But

Re: [WiX-users] Uninstall removes everything in the folder.

2007-07-09 Thread Bob Arnson
JCWrs wrote: > Ok, I am having a problem with the uninstall of my app. Whenever I run the > uninstall, the entire folder that I installed to is removed including > anything that may have already been in that folder or was added in later. > Any ideas as to what I'm doing wrong? > MSI shouldn't

Re: [WiX-users] SQLScript problem

2007-07-09 Thread Bob Arnson
Chad Petersen wrote: We were using Wix 2.0.3309.0 until recently Much changes in a year and a half. and the SQLScript element was working great. About a week ago we updated to WiX 2.0.5325.0 and the SQLScript element is no longer running our SQL scripts. I started looking at the older MSI

[WiX-users] quit

2007-07-09 Thread Prasad Kalluraya
quit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of commonweal Levine Sent: Monday, July 09, 2007 11:43 AM To: wix-users@lists.sourceforge.net Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [WiX-users] need lists of doctors? For this week we have t

[WiX-users] A bug in XmlFile action on 64bit platform?

2007-07-09 Thread Maxim Ivanov
I'm using XmlFile action (http://schemas.microsoft.com/wix/UtilExtension/XmlFile) to update an XML file, which is deploying to System32 folder. I've using the following code initially (removing some unrelated attributes):

[WiX-users] Uninstall removes everything in the folder.

2007-07-09 Thread JCWrs
Ok, I am having a problem with the uninstall of my app. Whenever I run the uninstall, the entire folder that I installed to is removed including anything that may have already been in that folder or was added in later. Any ideas as to what I'm doing wrong? -- View this message in context: htt

Re: [WiX-users] Windows Installer Service and reference counting...

2007-07-09 Thread Mike Dimmick
I should have added, the GUIDs under HKLM\\Components are not in their original format but in a 'compressed GUID' format. There is information on how to convert between the formats at http://support.installshield.com/kb/view.asp?articleid=q105971. Only the component's key path is listed - any o

Re: [WiX-users] UtilExtension Errors

2007-07-09 Thread Ward, Mike (MED US)
The culture switch fixed the errors. Thanks... I'm assuming suppressing the warnings is the correct action in this case? - Mike From: Mike Dimmick [mailto:[EMAIL PROTECTED] Sent: Monday, July 09, 2007 2:02 PM To: Ward, Mike (MED US); wix-users@lists.sourceforge

[WiX-users] SQLScript problem

2007-07-09 Thread Chad Petersen
We were using Wix 2.0.3309.0 until recently and the SQLScript element was working great. About a week ago we updated to WiX 2.0.5325.0 and the SQLScript element is no longer running our SQL scripts. I started looking at the older MSI packages that do work and the newer ones that are failing. Using

Re: [WiX-users] Starting two services in one installation?

2007-07-09 Thread Mike Dimmick
Do note that SC is expecting the underlying service name, not the display name. Net.exe (as in 'net start') accepts either. This is the name you gave in ServiceInstall/@Name. If you get really stuck, go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\, delete the whole key, and reb

Re: [WiX-users] Windows Installer Service and reference counting...

2007-07-09 Thread Mike Dimmick
It doesn't. Modules, once merged, lose their own identity. Only packages are remembered. Components are referenced, but not really reference counted. Instead, Windows Installer remembers each product which installed a component and where it installed it to. The actual format is undocumented and

Re: [WiX-users] UtilExtension Errors

2007-07-09 Thread Mike Dimmick
I'm guessing you need to specify the -cultures switch (e.g. -cultures:en-us) for the link to complete successfully. The validation warnings are a consequence of WiX including the error information in the MSM. It has to, so that the errors reported by XmlFile produce a sensible output. --

[WiX-users] Windows Installer Service and reference counting...

2007-07-09 Thread Rory Clark
Where does the installer service store its reference counting data for modules? We're trying to preserve the idea of ref counting without merging modules into an MSI. Yes, we realize there are dangers to this approach, but we are trying to solve some problems with install, reinstall, and uninstal

Re: [WiX-users] Sequence problem, running a custom action as early as possible

2007-07-09 Thread Mike Dimmick
The target directories are initially processed during costing (CostInitialize, FileCost, CostFinalize). If you want to influence the initial values you'll need to change them before CostInitialize. After that, only the file system controls (e.g. PathEdit) can modify the values and update the costin

[WiX-users] need lists of doctors?

2007-07-09 Thread commonweal Levine
For this week we have the following package deal in effect: promo code: X4E65A0 Physicians in the USA 788k in total – 17k emails 34 specialties – many sortable fields American Hospitals 23k Admins in more than 7k hospitals Dentists in the USA 597k dentists and dental services American Chi

[WiX-users] UtilExtension Errors

2007-07-09 Thread Ward, Mike (MED US)
I'm trying to use util:XmlFile in a merge module and get the following errors: -- Build started: Project: ReportDesignerMergeModule, Configuration: Release Any CPU -- \Report\Tools\WiX\v3.0\bin\candle.exe -out \Build\Release\CRC.Installers\obj\ReportDesignerMergeModule.wixobj -ext \Repor

[WiX-users] Actions on UnInstall

2007-07-09 Thread Alperstein, Kenny
I am new to WIX and one thing I haven't found very good information on is how do I specify that an action is to be executed on an uninstall. One example is executing a .bat file to do some process and having an other .bat file which reverses that when you uninstall. Kenny Alperstein Framework Arch

Re: [WiX-users] VC8 runtime redistribution best practice. Should Iusemerge modules or bootstrapper with vcredist_x86.exe?

2007-07-09 Thread Wilson, Phil
The VC8 support Dlls aren't installed in the GAC. Platform SDK installs often consist of several separate MSI files, so you'll see several separate removes going on. Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony Wieser Sent: Fri

Re: [WiX-users] Vista registry removal issue

2007-07-09 Thread Gareth at Serif
I don't think your uninstall process should remove anything it didn't create. Sure, the application itself may make some entries, but you do not need to know what they are and remove them... these entries are usually user customisations that I'm sure they'd want to have back when they reinstall t

[WiX-users] Sequence problem, running a custom action as early as possible

2007-07-09 Thread md5hans
Hi! I'm trying to get a Custom Action to be executed before the installer creates/checks any direcorys. I want to remove some files and the location of them are depending on a value that is retrieved by my Custom action "GettingXmlValue" and thevalue is put into the property "PACKAGE_NAME". Below

Re: [WiX-users] To enable hyperlink in URL in the message attribute of Conditon tag

2007-07-09 Thread Bob Arnson
nareshkrishnakumar kulothungan wrote: > My requirement is to make the URL > http://www.microsoft.com/downloads/details.aspx?familyid=0a6d4c24-8cbd-4b35-9272-dd3cbfc81887' > > > > hyperlink enabl

Re: [WiX-users] Another Patch Error

2007-07-09 Thread Bob Arnson
Petrut Andrei wrote: INFO: Using Temporary Directory: C:\Users\Shmenutz\AppData\Local\Temp\~pcw_tmp.tmp. ERROR: Internal PatchWiz Error occurred. ERROR: The Last Error Received is: 5 ERROR: Cannot create folder: 'C:\Users\Shmenutz\AppData\Local\Temp\~pcw_tmp.tmp'. ERROR: The Last E

Re: [WiX-users] Failed to open XML file on Vista

2007-07-09 Thread Bob Arnson
Albert van Peppen wrote: Checking with orca i found that SchedXmlFile is still scheduled and that the entire CA for XML handling was linked into my MSI, although it was not used. The XmlTable doesn't exist, this might eventualy be the problem ? Yes, the SchedXmlFile CA throws an error if it c

Re: [WiX-users] FileShare and adding Group Permissions

2007-07-09 Thread Bob Arnson
Peter Conlon wrote: > but I can't (assign a local group to the permission set of a local share - I > get: Unresolved reference to symbol 'User:[SQLGroup]' in section > 'Fragment:'. (LGHT0112) - ...\Setup\Files.wxs:1) > FileShare is an element backed by a WiX custom action; it's not native to

[WiX-users] Another Patch Error

2007-07-09 Thread Petrut Andrei
Hello. I don't understand what happened here. I ran couple of times the following lines: candle.exe PatchCRM.wxs light.exe PatchCRM.wixobj MSIMSP.exe -s PatchCRM.pcp -p PatchCRM.msp -l PatchCRM.log and the patch was created and it really worked. When I tried another time, I got this error. **

[WiX-users] Setting the APS.Net version in WIX

2007-07-09 Thread Alperstein, Kenny
I am migrating an existing build/packaging process to msbuild/wix. One of the .bat that was used in the old process called a vb script to create virtual directories, but also changed the ASP.Net version for that virtual directory (to 2.0) by executing "aspnet_regiis.exe". Is there anything built

[WiX-users] To enable hyperlink in URL in the message attribute of Conditon tag

2007-07-09 Thread nareshkrishnakumar kulothungan
Hi, I am trying to check whether .Net 1.1 is installed or not. If installed, I am checking whether GPMC is installed or not. My requirement is to make the URL http://www.microsoft.com/downloads/details.aspx?familyid=0a6d4c24-8cbd-4b35-9272-dd3cbfc81887' hyperlink enabled in the message at

Re: [WiX-users] Annoying RemoveFolders problem

2007-07-09 Thread Stefan Pavlik
Hi again... The following link shows a sample C++ custom action: http://www.tramontana.co.hu/wix/lesson3.php#3.3 You should modify it to remove the needed folder. ( use RemoveDirectory() function or MoveFileEx() with MOVEFILE_DELAY_UNTIL_REBOOT flag if the folder is still in use). Hope that it w

Re: [WiX-users] Failed to open XML file on Vista

2007-07-09 Thread Albert van Peppen
Hi, First of all sorry for the late reply; It's near the summer holliday so things are a bit busy at home ;) What i mean that went wrong is best illustrated with the following 3 sample pieces (i think you understand what the problem is from this). 1. When i use the following everything work

[WiX-users] FileShare and adding Group Permissions

2007-07-09 Thread Peter Conlon
All, Puzzled by this: I can (assign group permissions to a folder): but I can't (assign a local group to the permission set of a local share - I get: Unresolved reference to symbol 'User:[SQLGroup]' in section 'Fragment:'. (LGHT0112) - ...\Setup\Files.wxs:1) Any

Re: [WiX-users] RadioButton Condition

2007-07-09 Thread aashish_raina
hi why do we use Registry tag in our wxs file. DISCLAIMER == This e-mail may contain privileged and confidential information which is the property of Persistent Systems Pvt. Ltd. It is intended only for the use of the individual or entity to which it is addressed. If you are not the in

Re: [WiX-users] RadioButton Condition

2007-07-09 Thread aashish_raina
hi Why do we use Registry tag in our wxs file.. DISCLAIMER == This e-mail may contain privileged and confidential information which is the property of Persistent Systems Pvt. Ltd. It is intended only for the use of the individual or entity to which it is addressed. If you are not the i