[WiX-users] Setup can't install drivers via DIFXApp.

2011-02-24 Thread Sergey Yukhno
Hi, Setup can't install driver via DIFXApp and installation process stopped with error. How to just show error message and continue. Difxapp element doesn't have necessary option. Sergey Yukhno. -- Free Software

Re: [WiX-users] Setup can't install drivers via DIFXApp.

2011-02-24 Thread Tobias S
Hi, Think there is no way to directly do that as the Difxapp has, as you stated already, no element for that. I'd check the issue what is going wrong with the device driver instead of Resume on error. Do you have e.g. the correct files integrated in the Installation ? Once I had such an issue

Re: [WiX-users] Error 1723

2011-02-24 Thread Dan Vasilov
It is very likely the .dll is not included in the MSI package at build. Another possibility is the .dll is missing some dependent .dll files. -Original Message- From: Colin LeMahieu [mailto:clemah...@gmail.com] Sent: Wednesday, February 23, 2011 7:26 PM To:

Re: [WiX-users] How to cancel whole installation if user cancel Prerequisites?

2011-02-24 Thread peter zong
anyone knows? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-cancel-whole-installation-if-user-cancel-Prerequisites-tp6059116p6059642.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Trouble implementing a BootstrapperApplication in C#

2011-02-24 Thread Rob Mensching
There will be a log file in %TEMP%. Does it point out any errors? On Wed, Feb 23, 2011 at 2:14 PM, Simon Zinkevicius simon.zinkevic...@hp.com wrote: I also added the following line the the AssemblyInfo.cs in the bootstrapper Application library but it still will not run. [assembly:

Re: [WiX-users] bind.AssemblyVersion

2011-02-24 Thread Rob Mensching
Unfortunately, to get the bind.AssemblyXxx values you need to set the appropriate File/@Assembly attributes. If you don't go to the GAC, then you need to set the File/@AssemblyFile and File/@AssemblyApplication to point to the same file. Its weird WindowsSxS behavior that we probably should have

Re: [WiX-users] MSBuild batching - Disabling incremental clean of MSIs only

2011-02-24 Thread Rob Mensching
I *think* the change came when the new tool to sign cabinets came in. I'm looking at this code right now myself. I'm wondering if there is a bug in here somewhere. I'll let you know if I find anything interesting. On Mon, Feb 21, 2011 at 3:59 PM, Jacques Eloff repst...@gmail.com wrote: Hi I

Re: [WiX-users] Setup asks for rebooting after change/repair options.

2011-02-24 Thread Rob Mensching
Those are rollback files. They are not likely to be the cause of the reboot. The log file will probably point out some other files. On Wed, Feb 23, 2011 at 11:53 PM, Sergey Yukhno sergey.yuk...@visutechsystem.by wrote: After change/repair options setups asks for rebooting. In setup log I

Re: [WiX-users] running uninstallation as administrator

2011-02-24 Thread Rob Mensching
Make your custom actions deferred and they will run elevated. On Tue, Feb 22, 2011 at 9:40 PM, MYFLEX shrinuen...@gmail.com wrote: Hi all, our installer will run the different custom actions at the time of uninstallation. these custom actions needs the administrator previleges. how to run

Re: [WiX-users] Setup asks for rebooting after change/repair options.

2011-02-24 Thread Sergey Yukhno
Action 15:27:39: RollbackCleanup. Removing backup files MSI (s) (2C:A8) [15:27:39:500]: Note: 1: 1321 2: C:\Config.Msi\23320b.rbf MSI (s) (2C:A8) [15:27:39:500]: Verifying accessibility of file: 23320b.rbf Info 1903. Scheduling reboot operation: Deleting file C:\Config.Msi\23320b.rbf. Must

Re: [WiX-users] Trouble implementing a

2011-02-24 Thread Vadym Verba
Hey, Simon. I had the same problems when first try to write BA on managed code. Rob Mensching suggested me to see sources of Wix 3.6 installer itself. wix36-sources\src\Setup\Bundle - location of Wix bootstrapper project wix36-sources\src\Setup\UX - location of BoostrapperApplication project. It

Re: [WiX-users] Unable to change or propagate the value of a directory whose parent is changed via custom action

2011-02-24 Thread Antoine, David
Everyone, I apologize for not getting back sooner with updates on this issue, but I was able to find a solution. I had to do two things: * Set up subfeatures to point to APPDATADIR where applicable from the original example below instead of TARGETDIR as their configurable directory.

[WiX-users] How to issue a netsh http add urlacl url=.. command at install time...

2011-02-24 Thread Gregg Swanson
What is the recommended technique to use to enter the following command at install time? netsh http add urlacl url=https://+:443/EnterpriseService/ user=redmond\edmmtsa Thanks, Gregg -- Free Software Download: Index,

Re: [WiX-users] Setup asks for rebooting after change/repair options.

2011-02-24 Thread Wilson, Phil
You still need to look at the complete log. Searching for in use is a good start. Phil Wilson -Original Message- From: Sergey Yukhno [mailto:sergey.yuk...@visutechsystem.by] Sent: Thursday, February 24, 2011 7:32 AM To: General discussion for Windows Installer XML toolset. Subject:

[WiX-users] Uninstall an installed product.

2011-02-24 Thread Kevin Burton
I know this is an old question but I don't know the WiX syntax for automatically uninstalling an installed product. I looked at the documentation and I got confused with Major/Minor updates/upgrades. In my case if the product is install I *always* want to uninstall it before proceeding with

Re: [WiX-users] How to issue a netsh http add urlacl url=.. command at install time...

2011-02-24 Thread Maillet, Ed
Check out the CAQuietExec custom action. -Original Message- From: Gregg Swanson [mailto:gregg.swan...@microsoft.com] Sent: Thursday, February 24, 2011 12:54 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to issue a netsh http add urlacl url=.. command at install

[WiX-users] Need to not use IIS 6 Scripting tools compatibility on IIS 7 machines.

2011-02-24 Thread Uma Harano
Hi, I am using WiX C # custom action template in Visual Studio 2008. The custom action I am writing is for listing all the websites on a machine and displaying it in a msi dialog. The code is very similar to what is found on this site:

Re: [WiX-users] Need to not use IIS 6 Scripting tools compatibility on IIS 7 machines.

2011-02-24 Thread Skildum, Mathew
Unfortunately there is a completely different set of APIs for working with IIS 7. Here is the link to the MSDN documentation on the ServerManager Namespace: http://msdn.microsoft.com/en-us/library/microsoft.web.administration.servermanager(v=vs.90).aspx Mat Skildum -Original Message-

Re: [WiX-users] PlugCollectionInto values for VS2010

2011-02-24 Thread Maillet, Ed
Does anyone have the VS2010 values handy? The Wix 3.5 help only has the VS2205 and VS2008 values listed. I'm currently using for VS2008: vs:PlugCollectionInto TargetCollection=MS.VSIPCC.v90 TargetFeature=Help

Re: [WiX-users] Need to not use IIS 6 Scripting tools compatibility on IIS 7 machines.

2011-02-24 Thread John Robbins
Or you can steal the code I just posted that shows working with IIS7 and WiX. :) http://www.wintellect.com/CS/blogs/jrobbins/archive/2011/02/23/web-application-installer-in-wix.aspx Hope it helps! John Wintellect http://www.wintellect.com +1-877-968-5528 -Original Message- From:

Re: [WiX-users] Need to not use IIS 6 Scripting tools compatibility on IIS 7 machines.

2011-02-24 Thread Uma Harano
Thank you so much John and Mat. This forum is awesome. I have direction now. Uma- -Original Message- From: John Robbins [mailto:j...@wintellect.com] Sent: Thursday, February 24, 2011 1:41 PM To: General discussion for Windows Installer XML toolset.; Uma Harano Subject: RE: [WiX-users]

Re: [WiX-users] Trouble implementing a BootstrapperApplication in C#

2011-02-24 Thread Simon Zinkevicius
Im get a Error 0x8007007f: Failed to get BootstrapperApplicationCreate entry-point error in the log. Do I need to defne a BootstrapperApplicationCreate function in my BA library? -- View this message in context:

[WiX-users] AUTO: Kenneth L Resler is out of the office. (returning 02/28/2011)

2011-02-24 Thread Kenneth . Resler
I am out of the office until 02/28/2011. I will be out of the office, with limited email and phone access. Note: This is an automated response to your message Re: [WiX-users] PlugCollectionInto values for VS2010 sent on 2/24/2011 3:27:53 PM. This is the only notification you will receive

Re: [WiX-users] Trouble implementing a

2011-02-24 Thread Simon Zinkevicius
Thanks for the help. I was missing step 1. As soon as I added the config file payload it all started working. Thanks again. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-Trouble-implementing-a-tp6060833p6062338.html Sent from the wix-users

Re: [WiX-users] Trouble implementing a BootstrapperApplication in C#

2011-02-24 Thread Simon Zinkevicius
Everything is now up and running. My problem was that I was not including my BA config file in the BootstrapperApplication payload. I added the lines below into my Bundle.wxs and it is all working now. BootstrapperApplicationRef Id='ManagedBootstrapperApplicationHost' Payload

[WiX-users] (no subject)

2011-02-24 Thread Mark Turek
Using the following command 'msiexec /i SampleUpgrade.msi REINSTALL=ALL REINSTALLMODE=vomus' for minor upgrade causes the following rule not to be obeyed Feature Id='Service' Level='1' ComponentRef Id=Monitor / Condition Level=0FILEEXISTS/Condition /Feature Is there any way I can do

[WiX-users] DTF (session.Log)

2011-02-24 Thread Paden, Patrick
I came across an old message to this very same mailing group (google ftw) http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg17686.htm l I am working through the issue I have with string replacement escaping, just seeing if anyone has come up with a better idea since then

Re: [WiX-users] Command line installation?

2011-02-24 Thread Kevin Burton
I have WiX code like: Property Id=PREVIOUSVERSIONSINSTALLED Secure=yes / Upgrade Id='529189FE-FD0E-44ff-8DA6-B4FB5CC7A78B' UpgradeVersion Minimum=2.0.0.0 Maximum=2.0.5.0 Property=PREVIOUSVERSIONSINSTALLED IncludeMinimum=yes IncludeMaximum=no / /Upgrade . . . . .

Re: [WiX-users] Command line installation?

2011-02-24 Thread Chad Petersen
In another area of your code look for the Product/ element and make sure you change the Id= guid there as one necessary step. But, leave the UpgradeCode unchanged in that same element. Also make sure you increment your version number to something higher than that one you have already installed.

Re: [WiX-users] (no subject)

2011-02-24 Thread Wilson, Phil
How does FILEEXISTS get created? It's not a standard property so it must come from a search or something. Phil Wilson -Original Message- From: Mark Turek [mailto:turekm...@hotmail.com] Sent: Thursday, February 24, 2011 2:40 PM To: General discussion for Windows Installer XML too

Re: [WiX-users] Need to not use IIS 6 Scripting tools compatibility on IIS 7 machines.

2011-02-24 Thread Peter Hecht
I agree. This list is awesome. On Thu, Feb 24, 2011 at 2:47 PM, Uma Harano uhar...@esri.com wrote: Thank you so much John and Mat. This forum is awesome. I have direction now. Uma- -Original Message- From: John Robbins [mailto:j...@wintellect.com] Sent: Thursday, February 24, 2011

Re: [WiX-users] Trouble implementing a BootstrapperApplication in C#

2011-02-24 Thread Rob Mensching
And documentation will get better in the future. I have written the documentation yet because I've been trying to simplify the creation more... lots of fiddly little details you have to get connected for it to work. On Thu, Feb 24, 2011 at 2:31 PM, Simon Zinkevicius simon.zinkevic...@hp.com

Re: [WiX-users] Trouble implementing a

2011-02-24 Thread Rob Mensching
PS: you don't need supportedRuntime for both /Full and /Client. Full contains Client so you only need to specify the lesser one you need. On Thu, Feb 24, 2011 at 2:27 PM, Simon Zinkevicius simon.zinkevic...@hp.com wrote: Thanks for the help. I was missing step 1. As soon as I added the config

Re: [WiX-users] Uninstall an installed product.

2011-02-24 Thread Rob Mensching
In WiX v3.5, MajorUpgrade element provides nice syntactic sugar. Otherwise, you want to look at the Upgrade element. On Thu, Feb 24, 2011 at 10:22 AM, Kevin Burton kev...@buyseasons.comwrote: I know this is an old question but I don't know the WiX syntax for automatically uninstalling an

Re: [WiX-users] Problem with RemoveExistingProducts action

2011-02-24 Thread Igor Lemsky
It seems that I dont break component rules... I just add new component into existing feature and trying to upgrade. Besides I put it after InstallInitialize, but now take another problem. If some of dlls will have lower version - it deleted during upgrade. If product version 2.0 have bbb.dll

Re: [WiX-users] How to issue a netsh http add urlacl url=.. command at install time...

2011-02-24 Thread Dan Vasilov
A custom action will do exactly what you need, but please be aware your setup users will shortly see a command window on the screen. Are you configuring a WCF-based application? If so, you may want to ask one of your .NET developers to implement a C#-based custom action to