Re: [WiX-users] Error 1723 when calling CAQuiteExec to xcopy config files

2014-07-08 Thread David Welton
Hi Pally,

I have considered CopyFile but didn't think it would satisfy our *quite
complicated* use case. Here's a bit more detail:

1- We want to deploy potentially hundreds of files to the Backups folder
(Currently we heat the directory to create the wxs file).
2- The Backups folder will potentially contain sub-folders.
3- We want to copy (by whatever means) the files and folder structure
from the Backups folder (the installed location) to a working folder.
4- Once in the working folder, the files are potentially user
modifiable.
5- On an uninstall of the product we want the copy of the files in the
working folder to be left alone (not uninstalled).
6- On an upgrade of the product we want the files and folders in the
Backups folder to be upgraded as normal, however the copy of the files
in the working folder should not be upgraded (to preserve any
modifications that the user has made).

We have a number of products that we want to manage in the same way so I
was hoping to write this once and use it again. This does mean that I
have to deal with different folder structures (below the Backups folder)
and different files names.

I'm quite new to WiX and couldn't see a way of making CopyFile copy over
the folder structure or deal with wildcards for file names. If there is
a way then that will probably satisfy the use case above.

Any suggestions would be gratefully received.

Thanks,
David




-Original Message-
From: Pally Sandher [mailto:pally.sand...@iesve.com] 
Sent: 07 July 2014 13:51
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Error 1723 when calling CAQuiteExec to
xcopyconfig files

Why are you using xcopy at all? CopyFile is a thing which exists -
http://wixtoolset.org/documentation/manual/v3/xsd/wix/copyfile.html

And then your files will be part of uninstall/rollback/upgrade etc
without any extra work.

Palbinder Sandher
Software Platform Engineer 
T:   +44 (0)141 945 8500
F:   +44 (0)141 945 8501
http://www.iesve.com 

Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 Registered Office - Helix Building, West Of Scotland Science
Park, Glasgow G20 0SP Email Disclaimer 


-Original Message-
From: David Welton [mailto:david.wel...@uk.thalesgroup.com]
Sent: 07 July 2014 11:41
To: General discussion about the WiX toolset.
Subject: [WiX-users] Error 1723 when calling CAQuiteExec to xcopy config
files

Dear WiX users,

 

I am getting an Error 1723. There is a problem with this Windows
Installer package. A DLL required for this install to complete could not
be run. Contact your support personnel or package vendor when I try and
run a custom action to xcopy some config files during my installation.
Here is my fragment...

 

?xml version=1.0 encoding=UTF-8?

Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;

 xmlns:util=http://schemas.microsoft.com/wix/UtilExtension;

  Fragment

 

Property Id=XCopyCustomAction Value=1 /

!--echo n|xcopy src\* dst\* /e--

 

CustomAction Id=SetCmdLineParams

  Property=QuietExecXCopy

  Value=quot;[System64Folder]xcopy.exequot;
quot;[INSTALLFOLDER]Backups\*quot; quot;[INSTALLFOLDER]*quot; /E

  Execute=immediate /

 

 

CustomAction Id=QuietExecXCopy

  BinaryKey=WixCA

  DllEntry=CAQuiteExec

  Execute=deferred

  Return=check

  Impersonate=yes/

 

InstallExecuteSequence

  Custom Action=SetCmdLineParams After=CostFinalize/

  Custom Action=QuietExecXCopy After=InstallInitialize /

/InstallExecuteSequence



  /Fragment

/Wix

 

I am building my msi with VS2010 using WiX 3.8 and have added a
reference to WixUtilExtension to the project.

 

I have tried various permutations of the Value property just to see if
it was a cmd line syntax issue but keep getting the same error when I
run the msi.

 

Looking in the log file

...

MSI (s) (18:14) [09:16:16:899]: Doing action: SetCmdLineParams

MSI (s) (18:14) [09:16:16:899]: Note: 1: 2205 2:  3: ActionText 

Action start 09:16:16: SetCmdLineParams.

MSI (s) (18:14) [09:16:16:899]: PROPERTY CHANGE: Adding QuietExecXCopy
property. Its value is 'C:\WINDOWS\system32\xcopy.exe C:\Program
Files (x86)\TestConfigChanges\Backups\* C:\Program Files
(x86)\TestConfigChanges\* /E'.

Action ended 09:16:16: SetCmdLineParams. Return value 1.

...

MSI (s) (18:14) [09:16:17:180]: Executing op:
ActionStart(Name=QuietExecXCopy,,)

MSI (s) (18:14) [09:16:17:180]: Executing op:
CustomActionSchedule(Action=QuietExecXCopy,ActionType=3073,Source=Binary
Data,Target=CAQuiteExec,CustomActionData=C:\WINDOWS\system32\xcopy.exe
C:\Program Files (x86)\TestConfigChanges\Backups\* C:\Program Files
(x86)\TestConfigChanges\* /E)

MSI (s) (18:FC) [09:16:17:196]: Invoking remote custom action. DLL:
C:\WINDOWS\Installer\MSI1B9.tmp, Entrypoint: CAQuiteExec

MSI (s) (18:74) [09:16:17:196]: Generating random cookie.

MSI 

Re: [WiX-users] Error 1723 when calling CAQuiteExec to xcopy config files

2014-07-08 Thread Carter Young
Does this Old Post Help:

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Action-DLL-getting-Error-1723-td5766623.html


Quoting David Welton david.wel...@uk.thalesgroup.com:

 Hi Pally,

 I have considered CopyFile but didn't think it would satisfy our *quite
 complicated* use case. Here's a bit more detail:

 1- We want to deploy potentially hundreds of files to the Backups folder
 (Currently we heat the directory to create the wxs file).
 2- The Backups folder will potentially contain sub-folders.
 3- We want to copy (by whatever means) the files and folder structure
 from the Backups folder (the installed location) to a working folder.
 4- Once in the working folder, the files are potentially user
 modifiable.
 5- On an uninstall of the product we want the copy of the files in the
 working folder to be left alone (not uninstalled).
 6- On an upgrade of the product we want the files and folders in the
 Backups folder to be upgraded as normal, however the copy of the files
 in the working folder should not be upgraded (to preserve any
 modifications that the user has made).

 We have a number of products that we want to manage in the same way so I
 was hoping to write this once and use it again. This does mean that I
 have to deal with different folder structures (below the Backups folder)
 and different files names.

 I'm quite new to WiX and couldn't see a way of making CopyFile copy over
 the folder structure or deal with wildcards for file names. If there is
 a way then that will probably satisfy the use case above.

 Any suggestions would be gratefully received.

 Thanks,
 David





--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error 1723 when calling CAQuiteExec to xcopy config files

2014-07-08 Thread Nicolás Alvarez
2014-07-07 7:25 GMT-03:00 David Welton david.wel...@uk.thalesgroup.com:
 Dear WiX users,

 I am getting an Error 1723. There is a problem with this Windows
 Installer package. A DLL required for this install to complete could not
 be run. Contact your support personnel or package vendor when I try and
 run a custom action to xcopy some config files during my installation.
 Here is my fragment...


 CustomAction Id=QuietExecXCopy
   BinaryKey=WixCA
   DllEntry=CAQuiteExec

Maybe this is supposed to be CAQuietExec?

-- 
Nicolás

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error 1723 when calling CAQuiteExec to xcopy config files

2014-07-08 Thread John Cooper
In which case, the util library would need to be linked in for it to function.

--
John Merryweather Cooper
Build  Install Engineer – ESA
Jack Henry  Associates, Inc.®
Shawnee Mission, KS  66227
Office:  913-341-3434 x791011
jocoo...@jackhenry.com
www.jackhenry.com



-Original Message-
From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com] 
Sent: Tuesday, July 8, 2014 8:38 AM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Error 1723 when calling CAQuiteExec to xcopy config 
files

2014-07-07 7:25 GMT-03:00 David Welton david.wel...@uk.thalesgroup.com:
 Dear WiX users,

 I am getting an Error 1723. There is a problem with this Windows 
 Installer package. A DLL required for this install to complete could 
 not be run. Contact your support personnel or package vendor when I 
 try and run a custom action to xcopy some config files during my installation.
 Here is my fragment...


 CustomAction Id=QuietExecXCopy
   BinaryKey=WixCA
   DllEntry=CAQuiteExec

Maybe this is supposed to be CAQuietExec?

--
Nicolás

--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.
--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Microsoft Visual C++ error on install

2014-07-08 Thread John Zavidniak
When doing a fresh install a pop up appears saying User 'SYSTEM' has 
previously initiated an install for product 'Microsoft Visual C++ 2005 
Redistributable'. That user will need to run that install again before they can 
use that product. Your Current install will now continue. and when you select 
OK on that another pops up saying An installation for Microsoft Visual C++ 
2005 Redistributable is currently suspended. You must undo the changes made by 
that installation to continue. Do you want to undo those changes? Then no 
matter what you pick it rolls back the installation and you have to start over. 
It's also worth mentioning that on fresh installs when I first open the 
installer I always get a There is already another install occuring error and 
have to restart or kill all the installer tasks to get it to work.

Is this something I've configured incorrectly in the wxs files, or is it just 
an error with Microsoft?
--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Microsoft Visual C++ error on install

2014-07-08 Thread Carter Young
Although this applies to Adobe Acrobat, does this help:

http://helpx.adobe.com/acrobat/kb/suspended-installation-errors-acrobat-windows.html

Carter

Quoting John Zavidniak jo...@windward.net:

 When doing a fresh install a pop up appears saying User 'SYSTEM'  
 has previously initiated an install for product 'Microsoft Visual  
 C++ 2005 Redistributable'. That user will need to run that install  
 again before they can use that product. Your Current install will  
 now continue. and when you select OK on that another pops up saying  
 An installation for Microsoft Visual C++ 2005 Redistributable is  
 currently suspended. You must undo the changes made by that  
 installation to continue. Do you want to undo those changes? Then  
 no matter what you pick it rolls back the installation and you have  
 to start over. It's also worth mentioning that on fresh installs  
 when I first open the installer I always get a There is already  
 another install occuring error and have to restart or kill all the  
 installer tasks to get it to work.

 Is this something I've configured incorrectly in the wxs files, or  
 is it just an error with Microsoft?
 --
 Open source business process management suite built on Java and Eclipse
 Turn processes into business applications with Bonita BPM Community Edition
 Quickly connect people, data, and systems into organized workflows
 Winner of BOSSIE, CODIE, OW2 and Gartner awards
 http://p.sf.net/sfu/Bonitasoft
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Microsoft Visual C++ error on install

2014-07-08 Thread John Zavidniak
Well, it seems like a similar problem to mine, but it doesn't really explain 
why it is happening or how to prevent it.

-Original Message-
From: Carter Young [mailto:ecyo...@grandecom.net] 
Sent: Tuesday, July 08, 2014 9:53 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Microsoft Visual C++ error on install

Although this applies to Adobe Acrobat, does this help:

http://helpx.adobe.com/acrobat/kb/suspended-installation-errors-acrobat-windows.html

Carter

Quoting John Zavidniak jo...@windward.net:

 When doing a fresh install a pop up appears saying User 'SYSTEM'  
 has previously initiated an install for product 'Microsoft Visual
 C++ 2005 Redistributable'. That user will need to run that install
 again before they can use that product. Your Current install will now 
 continue. and when you select OK on that another pops up saying An 
 installation for Microsoft Visual C++ 2005 Redistributable is 
 currently suspended. You must undo the changes made by that 
 installation to continue. Do you want to undo those changes? Then no 
 matter what you pick it rolls back the installation and you have to 
 start over. It's also worth mentioning that on fresh installs when I 
 first open the installer I always get a There is already another 
 install occuring error and have to restart or kill all the installer 
 tasks to get it to work.

 Is this something I've configured incorrectly in the wxs files, or is 
 it just an error with Microsoft?
 --
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Microsoft Visual C++ error on install

2014-07-08 Thread Rob Mensching
I'd guess Windows Update.

___
 FireGiant  |  Dedicated support for the WiX toolset  |  
http://www.firegiant.com/

-Original Message-
From: John Zavidniak [mailto:jo...@windward.net] 
Sent: Tuesday, July 8, 2014 9:05 AM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Microsoft Visual C++ error on install

Well, it seems like a similar problem to mine, but it doesn't really explain 
why it is happening or how to prevent it.

-Original Message-
From: Carter Young [mailto:ecyo...@grandecom.net]
Sent: Tuesday, July 08, 2014 9:53 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Microsoft Visual C++ error on install

Although this applies to Adobe Acrobat, does this help:

http://helpx.adobe.com/acrobat/kb/suspended-installation-errors-acrobat-windows.html

Carter

Quoting John Zavidniak jo...@windward.net:

 When doing a fresh install a pop up appears saying User 'SYSTEM'  
 has previously initiated an install for product 'Microsoft Visual
 C++ 2005 Redistributable'. That user will need to run that install
 again before they can use that product. Your Current install will now 
 continue. and when you select OK on that another pops up saying An 
 installation for Microsoft Visual C++ 2005 Redistributable is 
 currently suspended. You must undo the changes made by that 
 installation to continue. Do you want to undo those changes? Then no 
 matter what you pick it rolls back the installation and you have to 
 start over. It's also worth mentioning that on fresh installs when I 
 first open the installer I always get a There is already another 
 install occuring error and have to restart or kill all the installer 
 tasks to get it to work.

 Is this something I've configured incorrectly in the wxs files, or is 
 it just an error with Microsoft?
 --
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Bootstrapper not upgrading MSI [P]

2014-07-08 Thread Steven Ogilvie
Classification: Public
That is not considered an upgrade

MSI can only read the first 3 digits 6.0.0 in order to upgrade you must change 
one of the first three digits i.e. 6.0.1 
http://msdn.microsoft.com/en-us/library/aa370579(v=vs.85).aspx

Steve


-Original Message-
From: Nick downey [mailto:fluffaluffagu...@gmail.com]
Sent: July-07-14 11:17 AM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Bootstrapper not upgrading MSI

The original version was 6.0.0.0 and the new one was 6.0.0.1

Sent with AquaMail for Android
http://www.aqua-mail.com


On July 7, 2014 11:13:07 AM John Cooper jocoo...@jackhenry.com wrote:

 Well, the log indicates that Burn is uninstalling.  What are the 
 version numbers for the initial and upgrade installs?

 --
 John Merryweather Cooper
 Build  Install Engineer - ESA
 Jack Henry  Associates, Inc.®
 Shawnee Mission, KS  66227
 Office:  913-341-3434 x791011
 jocoo...@jackhenry.com
 www.jackhenry.com



 -Original Message-
 From: Steven Fluffaluffagus [mailto:fluffaluffagu...@gmail.com]
 Sent: Monday, July 7, 2014 10:00 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Bootstrapper not upgrading MSI

 I have a Wix Bootstrapper which conditionally installs various 
 components, which are defaulted to not install unless a command line 
 parameter is sent.
 This works fine on the initial install, but when I attempt to perform 
 an upgrade, the command line parameters do not seem to be being read.
 It also does not upgrade the MSI being run by the bootstrapper, just 
 remove the files it created. The bootstrapper will display Previous 
 version for the progress text and then finish.

 Here is the log for the Bootstrapper :
 https://drive.google.com/file/d/0B4QDf83juiMDRFlnV2p0ZEVRYlE/edit?usp=
 sharing

 Here is the log for the msi being run:
 https://drive.google.com/file/d/0B4QDf83juiMDUU1tdG9EdkUxMUk/edit?usp=
 sharing
 --
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 NOTICE: This electronic mail message and any files transmitted with it 
 are intended exclusively for the individual or entity to which it is 
 addressed. The message, together with any attachment, may contain 
 confidential and/or privileged information.
 Any unauthorized review, use, printing, saving, copying, disclosure or 
 distribution is strictly prohibited. If you have received this message 
 in error, please immediately advise the sender by reply email and 
 delete all copies.


 --
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on July-08-14 2:19:54 
PM.

The above classification labels were added to the message by TITUS Message 
Classification. 
For more information visit www.titus.com.
--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] wix3.9.702 CHM

2014-07-08 Thread Phill Hogland
I just downloaded wix 3.9.702.  (I currently have wix 3.8.1128 installed
using the wix setup.)  While I downloaded the wix 3.9 setup, binary zip, and
debug zip, I did not use the wix 3.9 setup.  Rather I extracted 3.9 binaries
zip to a folder on my system.  I then browsed to wix.CHM in that tree and
double clicked.  The index is displayed on the left, but double clicking on
any topic does not display any topic.

Back in the 3.7 time frame I had setup a similar folder structure based on
the chm documentation, but I ran into some issues (particularly once I
started working with 3.8) as sometimes the builds were pointed at 3.7 tools
(installed with the setup) rather than 3.8 tools in my development tree.  So
at that point I abandoned trying to put multiple versions on a system.  I
thought with 3.9 I would try that approach again.  Opening the 3.9 chm is
the first thing I tried.

Do I need to make some config change on my system to use the 3.9 chm, or are
others seeing this issue (particularly on a system where the very nice wix
installer was not used)?

Phill
 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/wix3-9-702-CHM-tp7595722.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] wix3.9.702 CHM

2014-07-08 Thread John H Bergman (XPedient)
Did you unblock the chm?  Right-click properties on the file.

-Original Message-
From: Phill Hogland [mailto:phogl...@rimage.com] 
Sent: Tuesday, July 8, 2014 2:58 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] wix3.9.702 CHM

I just downloaded wix 3.9.702.  (I currently have wix 3.8.1128 installed using 
the wix setup.)  While I downloaded the wix 3.9 setup, binary zip, and debug 
zip, I did not use the wix 3.9 setup.  Rather I extracted 3.9 binaries zip to a 
folder on my system.  I then browsed to wix.CHM in that tree and double 
clicked.  The index is displayed on the left, but double clicking on any topic 
does not display any topic.

Back in the 3.7 time frame I had setup a similar folder structure based on the 
chm documentation, but I ran into some issues (particularly once I started 
working with 3.8) as sometimes the builds were pointed at 3.7 tools (installed 
with the setup) rather than 3.8 tools in my development tree.  So at that point 
I abandoned trying to put multiple versions on a system.  I thought with 3.9 I 
would try that approach again.  Opening the 3.9 chm is the first thing I tried.

Do I need to make some config change on my system to use the 3.9 chm, or are 
others seeing this issue (particularly on a system where the very nice wix 
installer was not used)?

Phill
 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/wix3-9-702-CHM-tp7595722.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] wix3.9.702 CHM

2014-07-08 Thread Phill Hogland
No I had not done that.  Thanks for the reminder!



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/wix3-9-702-CHM-tp7595722p7595724.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] PIDTemplate w/ MaskedEdit

2014-07-08 Thread TimM
I am trying to do a MaskedEdit control that can contain 0-9, so I set the
text to # and I have a default of 2279.

When test the dialog box the Next button will do nothing until I enter 5
numbers in the MaskedEdit control.

So what am I supposed to set the text field to so that I can enter only
numbers and can have from 1 to 5 numbers entered into that field?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/PIDTemplate-w-MaskedEdit-tp4815087p7595725.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] PIDTemplate w/ MaskedEdit

2014-07-08 Thread John Cooper
Have use seen this?

http://stackoverflow.com/questions/4440631/check-if-maskededit-control-contains-text
 

--
John Merryweather Cooper
Build  Install Engineer - ESA
Jack Henry  Associates, Inc.®
Shawnee Mission, KS  66227
Office:  913-341-3434 x791011
jocoo...@jackhenry.com
www.jackhenry.com



-Original Message-
From: TimM [mailto:timmay...@smarttech.com] 
Sent: Tuesday, July 8, 2014 4:59 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] PIDTemplate w/ MaskedEdit

I am trying to do a MaskedEdit control that can contain 0-9, so I set the 
text to # and I have a default of 2279.

When test the dialog box the Next button will do nothing until I enter 5 
numbers in the MaskedEdit control.

So what am I supposed to set the text field to so that I can enter only numbers 
and can have from 1 to 5 numbers entered into that field?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/PIDTemplate-w-MaskedEdit-tp4815087p7595725.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Open source business process management suite built on Java and Eclipse Turn 
processes into business applications with Bonita BPM Community Edition Quickly 
connect people, data, and systems into organized workflows Winner of BOSSIE, 
CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.


--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Microsoft Visual C++ error on install

2014-07-08 Thread Phil Wilson
Yes, probably Windows Update or maybe a previous install that didn't
work somehow.

I don't think you can't prevent it because it looks like it's not your
problem or anything to do with your install. Basically you are now
doing support for the customer's broken system. So at the point where
the failed install rolls back and before stating installs again:

1. A caveat: It's not clear to me what kill all the installer tasks
means because in the MSI world they should be serial, not parallel.
But you want none running at all, and I don't know why there would be
several there that need killing. You want no installs running.

2. Then go that Acrobat Help link and do the recovery actions to
remove the registry's InProgress key that's making Windows think
there's still one running.

In other words the issue after the failed VC++ install rolls back is
that there is probably an InProgress key left behind, and you want to
remove it after being sure that it's not there because you are running
your installs.
---
Phil Wilson


On Tue, Jul 8, 2014 at 9:17 AM, Rob Mensching r...@firegiant.com wrote:
 I'd guess Windows Update.

 ___
  FireGiant  |  Dedicated support for the WiX toolset  |  
 http://www.firegiant.com/

 -Original Message-
 From: John Zavidniak [mailto:jo...@windward.net]
 Sent: Tuesday, July 8, 2014 9:05 AM
 To: General discussion about the WiX toolset.
 Subject: Re: [WiX-users] Microsoft Visual C++ error on install

 Well, it seems like a similar problem to mine, but it doesn't really explain 
 why it is happening or how to prevent it.

 -Original Message-
 From: Carter Young [mailto:ecyo...@grandecom.net]
 Sent: Tuesday, July 08, 2014 9:53 AM
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] Microsoft Visual C++ error on install

 Although this applies to Adobe Acrobat, does this help:

 http://helpx.adobe.com/acrobat/kb/suspended-installation-errors-acrobat-windows.html

 Carter

 Quoting John Zavidniak jo...@windward.net:

 When doing a fresh install a pop up appears saying User 'SYSTEM'
 has previously initiated an install for product 'Microsoft Visual
 C++ 2005 Redistributable'. That user will need to run that install
 again before they can use that product. Your Current install will now
 continue. and when you select OK on that another pops up saying An
 installation for Microsoft Visual C++ 2005 Redistributable is
 currently suspended. You must undo the changes made by that
 installation to continue. Do you want to undo those changes? Then no
 matter what you pick it rolls back the installation and you have to
 start over. It's also worth mentioning that on fresh installs when I
 first open the installer I always get a There is already another
 install occuring error and have to restart or kill all the installer
 tasks to get it to work.

 Is this something I've configured incorrectly in the wxs files, or is
 it just an error with Microsoft?
 --
  Open source business process management suite built on Java
 and Eclipse Turn processes into business applications with Bonita BPM
 Community Edition Quickly connect people, data, and systems into
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards
 http://p.sf.net/sfu/Bonitasoft
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






 --
 Open source business process management suite built on Java and Eclipse Turn 
 processes into business applications with Bonita BPM Community Edition 
 Quickly connect people, data, and systems into organized workflows Winner of 
 BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
 Open source business process management suite built on Java and Eclipse Turn 
 processes into business applications with Bonita BPM Community Edition 
 Quickly connect people, data, and systems into organized workflows Winner of 
 BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
 Open source business process management suite built on Java and Eclipse
 Turn processes into business applications with Bonita BPM Community Edition
 Quickly connect people, data, and systems into organized workflows
 Winner of BOSSIE, CODIE, OW2 and Gartner awards
 

Re: [WiX-users] Microsoft Visual C++ error on install

2014-07-08 Thread John Zavidniak
Alright, that makes sense. Thanks for all that!

-Original Message-
From: Phil Wilson [mailto:phildgwil...@gmail.com] 
Sent: Tuesday, July 08, 2014 4:46 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Microsoft Visual C++ error on install

Yes, probably Windows Update or maybe a previous install that didn't work 
somehow.

I don't think you can't prevent it because it looks like it's not your problem 
or anything to do with your install. Basically you are now doing support for 
the customer's broken system. So at the point where the failed install rolls 
back and before stating installs again:

1. A caveat: It's not clear to me what kill all the installer tasks
means because in the MSI world they should be serial, not parallel.
But you want none running at all, and I don't know why there would be several 
there that need killing. You want no installs running.

2. Then go that Acrobat Help link and do the recovery actions to remove the 
registry's InProgress key that's making Windows think there's still one running.

In other words the issue after the failed VC++ install rolls back is that there 
is probably an InProgress key left behind, and you want to remove it after 
being sure that it's not there because you are running your installs.
---
Phil Wilson


On Tue, Jul 8, 2014 at 9:17 AM, Rob Mensching r...@firegiant.com wrote:
 I'd guess Windows Update.

 ___
  FireGiant  |  Dedicated support for the WiX toolset  |  
 http://www.firegiant.com/

 -Original Message-
 From: John Zavidniak [mailto:jo...@windward.net]
 Sent: Tuesday, July 8, 2014 9:05 AM
 To: General discussion about the WiX toolset.
 Subject: Re: [WiX-users] Microsoft Visual C++ error on install

 Well, it seems like a similar problem to mine, but it doesn't really explain 
 why it is happening or how to prevent it.

 -Original Message-
 From: Carter Young [mailto:ecyo...@grandecom.net]
 Sent: Tuesday, July 08, 2014 9:53 AM
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] Microsoft Visual C++ error on install

 Although this applies to Adobe Acrobat, does this help:

 http://helpx.adobe.com/acrobat/kb/suspended-installation-errors-acroba
 t-windows.html

 Carter

 Quoting John Zavidniak jo...@windward.net:

 When doing a fresh install a pop up appears saying User 'SYSTEM'
 has previously initiated an install for product 'Microsoft Visual
 C++ 2005 Redistributable'. That user will need to run that install
 again before they can use that product. Your Current install will now 
 continue. and when you select OK on that another pops up saying An 
 installation for Microsoft Visual C++ 2005 Redistributable is 
 currently suspended. You must undo the changes made by that 
 installation to continue. Do you want to undo those changes? Then no 
 matter what you pick it rolls back the installation and you have to 
 start over. It's also worth mentioning that on fresh installs when I 
 first open the installer I always get a There is already another 
 install occuring error and have to restart or kill all the installer 
 tasks to get it to work.

 Is this something I've configured incorrectly in the wxs files, or is 
 it just an error with Microsoft?
 -
 -
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






 --
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
  Open source business process management suite built on Java 
 and Eclipse Turn processes into business applications with Bonita BPM 
 Community Edition Quickly connect people, data, and systems into 
 organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards 
 http://p.sf.net/sfu/Bonitasoft 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users