Re: [WiX-users] [wix-users] Impact of installed burn?

2013-07-23 Thread Tomas Köhn
Thanks,

Will this impact future installs of .msi files which has been part of bundle 
before (but has been uninstalled)?

/ Tomas

-Original Message-
From: Wesley Manning [mailto:wmann...@dynagen.ca] 
Sent: den 22 juli 2013 14:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] [wix-users] Impact of installed burn?

Users will have no way to uninstall burn package AFAIK.  See 
http://www.joyofsetup.com/2013/07/05/burn-zero-one-or-n/ .

Wes

-Original Message-
From: Tomas Köhn [mailto:tomas.k...@cellavision.se]
Sent: July-22-13 8:20 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] [wix-users] Impact of installed burn?

We need to support installation from both .exe and .msi (for remote program 
distribution). As I understand, burn can't be used without installing into ARP. 
We want the program installation to be the same from both .exe and .msi.

If I set DisableModify=yes DisableRemove=yes, the bundle (burn) application 
will not be visible in Program  Feature. What will be stored in ARP and how 
will this impact the installed .msi?

Regards
Tomas
--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Updating msi database (install time)

2013-07-23 Thread Enrique Domínguez
Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a 
custom action at install time, for changing installer's banners. It's C# code 
and looks like:
  
Microsoft.Deployment.WindowsInstaller.Database db = session.Database;
string stSQL = @UPDATE `Control` SET `Text`=? WHERE 
`Type`='Bitmap' AND `Control`='BannerBitmap';
Microsoft.Deployment.WindowsInstaller.Record rc = 
db.CreateRecord(1);
Microsoft.Deployment.WindowsInstaller.View 
vw=db.OpenView(stSQL);
rc.SetString(1, MyBannerBmp);
vw.Execute(rc);
rc.SetString(1, MyDialogBmp);
vw.Execute(rc);
But UPDATE always fails with: 'Database Table(s) Update Failed' at vw.Execute 
line. I have tested a couple of different ways, always failing. Please, could 
somebody pointing me in right direction?
I suppose as I was able to update PROPERTIES, I could update Control table 
fields.
Thanks a lot. Best regards,
Enrique Dominguez

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] passing command args to MSI from bundle [P]

2013-07-23 Thread Freedman, Mark P.
I did'nt realize it was overwriting the wix generated bootstrapper. The intent 
is to not have to reproduce the logic of all the pre-reqs I need to include, 
like .NET 3.5, .NET 4, SQL Server, but seems to undo all the wix-specifics I'm 
setting up. I guess the real answer here is to not rely on the 
GenerateBootstrapper task, but I'm not ready to reproduce all the bootstrapper 
logic that's already provided to me.

I was looking at this Stack Overflow question, and others, for a bootstrapper 
guide:
http://stackoverflow.com/questions/1128734/how-do-i-make-a-wix-installer-with-a-completely-self-contained-net-3-5-sp1-inst


Mark Freedman


-Original Message-
From: John Cooper [mailto:jocoo...@jackhenry.com]
Sent: Monday, July 22, 2013 2:13 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

It's redundant and probably a significant source of the problem.  It should be 
removed or at least commented out so he knows which bootstrapper he's actually 
debugging.

--
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 Ogilvie [mailto:steven.ogil...@titus.com]
Sent: Monday, July 22, 2013 12:13 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Classification: Public
Then what is the purpose of using MSBuild + WIX bundle + WIX MSI that seems 
like an overkill?

-Original Message-
From: John Cooper [mailto:jocoo...@jackhenry.com]
Sent: July-22-13 12:50 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Old MsBuild/Visual Studio task that takes a manifest, a set of dependencies 
usually embedded in the project file, and builds a primitive bootstrapper.  We 
used to use it before they hired me.

--
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 Ogilvie [mailto:steven.ogil...@titus.com]
Sent: Monday, July 22, 2013 11:34 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Classification: Public
Sorry Mark,

I am not familiar with Generatebootstrapper what is that?

Steve

-Original Message-
From: Freedman, Mark P. [mailto:mark.freed...@jhuapl.edu]
Sent: July-22-13 12:15 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Steve,

Correct, I do not see the logs.

I experimented with removing my GenerateBootstrapper task as I mentioned 
before, reproduced below. I then see the log file show up, and I see similar 
log files as you have described, and the variable SETLOCALDB set to 'true' as 
you would expect. The problem is, I am relying on the GenerateBootstrapper 
post-build task to gather up my bootstrappers. It seems that running 
GenerateBootstrapper clobbers specifics that I put in my Bundle.wxs

  Target Name=AfterBuild
GenerateBootstrapper ApplicationFile=My Installer.msi 
ApplicationName=My App BootstrapperItems=@(BootstrapperFile) 
ComponentsLocation=Relative CopyComponents=True OutputPath=$(OutputPath) 
Path=..\..\Bootstrapper /
  /Target

Mark Freedman
JHU/APL
17-N568
443.778.2647
mark.freed...@jhuapl.edu


-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: Monday, July 22, 2013 12:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Classification: Public
If you run your bootstrapper exe (burn.wxs) then through it run the MSI, you 
don't see any log files in your %temp% folder?

-Original Message-
From: Freedman, Mark P. [mailto:mark.freed...@jhuapl.edu]
Sent: July-22-13 11:49 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Steven,

I see what you're doing and it all makes sense.
I can't find any logs files where you describe, or any log files that include 
my bundle name. I do see an install.log, but doesn't mention the defaulted 
MsiProperty I'm trying to set, nor does it have the date/time stamps like the 
excerpt you're showing below.

I'm on Wix 3.7.1224.0, building on a win 7 machine

Mark Freedman
JHU/APL
17-N568
443.778.2647
mark.freed...@jhuapl.edu


-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: Monday, July 22, 2013 11:30 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] passing command args to MSI from bundle [P]

Classification: Public
The log files 

Re: [WiX-users] Updating msi database (install time)

2013-07-23 Thread Christopher Painter
You can only do this with TEMPORARY updates once the installer is running.  
Maybe this blog article will help:

http://blog.iswix.com/2008/07/dynamic-windows-installer-ui.html


 From: Enrique Domínguez edoming...@goalsystems.com
Sent: Tuesday, July 23, 2013 6:10 AM
To: wix-users@lists.sourceforge.net wix-users@lists.sourceforge.net
Subject: [WiX-users] Updating msi database (install time)

Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a 
custom action at install time, for changing installer's banners. It's C# code 
and looks like:
Microsoft.Deployment.WindowsInstaller.Database db = session.Database;
string stSQL = @UPDATE `Control` SET `Text`=? WHERE `Type`='Bitmap' AND 
`Control`='BannerBitmap';
Microsoft.Deployment.WindowsInstaller.Record rc = db.CreateRecord(1);
Microsoft.Deployment.WindowsInstaller.View vw=db.OpenView(stSQL);
rc.SetString(1, MyBannerBmp);
vw.Execute(rc);
rc.SetString(1, MyDialogBmp);
vw.Execute(rc);
But UPDATE always fails with: 'Database Table(s) Update Failed' at vw.Execute 
line. I have tested a couple of different ways, always failing. Please, could 
somebody pointing me in right direction?
I suppose as I was able to update PROPERTIES, I could update Control table 
fields.
Thanks a lot. Best regards,
Enrique Dominguez

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Updating msi database (install time) [P]

2013-07-23 Thread Steven Ogilvie
Classification: Public
Enrique,

Why are you using a custom action to change the banner of the MSI? There is a 
WIX element to do that:
WixVariable Overridable=yes Id='WixUIBannerBmp' 
Value=$(var.resourcePath)\TFSTopBanner.bmp/
 WixVariable Overridable=yes Id='WixUIDialogBmp' 
Value=$(var.resourcePath)\TFSSide.bmp/

Regards,

Steve

-Original Message-
From: Enrique Domínguez [mailto:edoming...@goalsystems.com]
Sent: July-23-13 7:04 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Updating msi database (install time)

Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a 
custom action at install time, for changing installer's banners. It's C# code 
and looks like:
  
Microsoft.Deployment.WindowsInstaller.Database db = session.Database;
string stSQL = @UPDATE `Control` SET `Text`=? WHERE 
`Type`='Bitmap' AND `Control`='BannerBitmap';
Microsoft.Deployment.WindowsInstaller.Record rc = 
db.CreateRecord(1);
Microsoft.Deployment.WindowsInstaller.View 
vw=db.OpenView(stSQL);
rc.SetString(1, MyBannerBmp);
vw.Execute(rc);
rc.SetString(1, MyDialogBmp);
vw.Execute(rc);
But UPDATE always fails with: 'Database Table(s) Update Failed' at vw.Execute 
line. I have tested a couple of different ways, always failing. Please, could 
somebody pointing me in right direction?
I suppose as I was able to update PROPERTIES, I could update Control table 
fields.
Thanks a lot. Best regards,
Enrique Dominguez

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13 9:05:51 
AM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

 



--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] passing command args to MSI from bundle [P]

2013-07-23 Thread Steven Ogilvie
Classification: Public
Mark,

I am installing .NET, SQL Server Express 2012 and various other pre requisites 
using the WIX bundle (bootstrapper)

It seems to be an overkill to use the MSBuild GenerateBootstrapper esp since 
WIX handles the logic to see if the pre requisites are installed or not etc.

Here is my logic for the bootstrapper bundle:

Variable Name=SERVICESLOGLEVEL Type=string bal:Overridable=yes 
Value=WARN/

Chain
  PackageGroupRef Id=Netfx4Full/

  ExePackage Id=SQLExpressx64
DisplayName=Microsoft® SQL Server® 2012 - Express Edition x64
SourceFile=..\PreReqs\SQLEXPR_x64_ENU.exe
Name=RedistServerAC\SQLEXPR_x64_ENU.exe
InstallCommand=/ACTION=Install /INSTANCENAME=SQLEXPRESS 
/FEATURES=SQLENGINE /Q /HIDECONSOLE /SkipRules=RebootRequiredCheck 
/IAcceptSQLServerLicenseTerms /SQLSVCSTARTUPTYPE=Automatic 
/SQLSVCACCOUNT=quot;NT AUTHORITY\NETWORK SERVICEquot; /AGTSVCACCOUNT=quot;NT 
AUTHORITY\NETWORK SERVICEquot; /ASSYSADMINACCOUNTS=BUILTIN\Administrators 
/SQLSYSADMINACCOUNTS=BUILTIN\Administrators /BROWSERSVCSTARTUPTYPE=Disabled 
/ADDCURRENTUSERASSQLADMIN=true /TCPENABLED=1
InstallCondition=Not SQLExpress_Existx64 AND Not SQLExpress_Exist 
AND VersionNT64
DetectCondition=SQLExpress_Existx64
Cache=no
Compressed=no
PerMachine=yes
Permanent=yes/

  ExePackage Id=SQLExpressx86
  DisplayName=Microsoft® SQL Server® 2012 - Express Edition 
x86
  SourceFile=..\PreReqs\SQLEXPR_x86_ENU.exe
  Name=RedistServerAC\SQLEXPR_x86_ENU.exe
  InstallCommand=/ACTION=Install /INSTANCENAME=SQLEXPRESS 
/FEATURES=SQLENGINE /Q /HIDECONSOLE /SkipRules=RebootRequiredCheck 
/IAcceptSQLServerLicenseTerms /SQLSVCSTARTUPTYPE=Automatic 
/SQLSVCACCOUNT=quot;NT AUTHORITY\NETWORK SERVICEquot; /AGTSVCACCOUNT=quot;NT 
AUTHORITY\NETWORK SERVICEquot; /ASSYSADMINACCOUNTS=BUILTIN\Administrators 
/SQLSYSADMINACCOUNTS=BUILTIN\Administrators /BROWSERSVCSTARTUPTYPE=Disabled 
/ADDCURRENTUSERASSQLADMIN=true /TCPENABLED=1
  InstallCondition=Not SQLExpress_Exist AND Not VersionNT64
  DetectCondition=SQLExpress_Exist
  Cache=no
  Compressed=no
  PerMachine=yes
  Permanent=yes/

  MsiPackage Id=SQLCoreXMLx86
  DisplayName= Microsoft Core XML Services (MSXML) 6.0 x86
  DisplayInternalUI=no
  Visible=yes
  SourceFile=..\PreReqs\msxml6_x86.msi
  Name=RedistServerAC\msxml6_x86.msi
  Cache=no
  Compressed=no
  Permanent=yes/

  MsiPackage Id=SQLCoreXMLx64
  DisplayName= Microsoft Core XML Services (MSXML) 6.0 x64
  DisplayInternalUI=no
  Visible=yes
  SourceFile=..\PreReqs\msxml6_x64.msi
  Name=RedistServerAC\msxml6_x64.msi
  InstallCondition=VersionNT64
  Cache=no
  Compressed=no
  Permanent=yes/

  MsiPackage Id=SQLSysClrTypesx86
  DisplayName=Microsoft SQL Server 2012 System CLR Types x86
  DisplayInternalUI=no
  Visible=yes
  SourceFile=..\PreReqs\SQLSysClrTypes2012_x86.msi
  Name=RedistServerAC\SQLSysClrTypes2012_x86.msi
  Cache=no
  Compressed=no
  Permanent=yes/

  MsiPackage Id=SQLSysClrTypesx64
  DisplayName=Microsoft SQL Server 2012 System CLR Types x64
  DisplayInternalUI=no
  Visible=yes
  SourceFile=..\PreReqs\SQLSysClrTypes2012_x64.msi
  Name=RedistServerAC\SQLSysClrTypes2012_x64.msi
  InstallCondition=VersionNT64
  Cache=no
  Compressed=no
  Permanent=yes/

  MsiPackage Id=SharedManagementObjects_x86
  DisplayName=Microsoft SQL Server 2012 Management Objects x86
  DisplayInternalUI=no
  Visible=yes
  SourceFile=..\PreReqs\SharedManagementObjects2012_x86.msi
  Name=RedistServerAC\SharedManagementObjects2012_x86.msi
  Cache=no
  Compressed=no
  Permanent=yes/

  MsiPackage Id=SharedManagementObjects_x64
  DisplayName=Microsoft SQL Server 2012 Management Objects x64
  DisplayInternalUI=no
  Visible=yes
  SourceFile=..\PreReqs\SharedManagementObjects2012_x64.msi
  Name=RedistServerAC\SharedManagementObjects2012_x64.msi
  InstallCondition=VersionNT64
  Cache=no
  Compressed=no
  Permanent=yes/

  MsiPackage 

Re: [WiX-users] Updating msi database (install time)

2013-07-23 Thread Enrique Domínguez
Hi Christopher,
Thanks you for your quick response, as far I know TEMPORARY applying only for 
INSERT sentences, I have read here,
http://msdn.microsoft.com/en-us/library/aa372021(v=vs.85).aspx
Afterwards, I have tested adding TEMPORARY before and after WHERE ... clause 
with no success.
Maybe I miss something more?

Enrique Domínguez Pinos

-Mensaje original-
De: Christopher Painter [mailto:chr...@iswix.com] 
Enviado el: martes, 23 de julio de 2013 13:56
Para: General discussion for Windows Installer XML toolset.; 
wix-users@lists.sourceforge.net
Asunto: Re: [WiX-users] Updating msi database (install time)

You can only do this with TEMPORARY updates once the installer is running.  
Maybe this blog article will help:

http://blog.iswix.com/2008/07/dynamic-windows-installer-ui.html


 From: Enrique Domínguez edoming...@goalsystems.com
Sent: Tuesday, July 23, 2013 6:10 AM
To: wix-users@lists.sourceforge.net wix-users@lists.sourceforge.net
Subject: [WiX-users] Updating msi database (install time)

Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a 
custom action at install time, for changing installer's banners. It's C# code 
and looks like:
Microsoft.Deployment.WindowsInstaller.Database db = session.Database; string 
stSQL = @UPDATE `Control` SET `Text`=? WHERE `Type`='Bitmap' AND 
`Control`='BannerBitmap'; Microsoft.Deployment.WindowsInstaller.Record rc = 
db.CreateRecord(1); Microsoft.Deployment.WindowsInstaller.View 
vw=db.OpenView(stSQL); rc.SetString(1, MyBannerBmp); vw.Execute(rc); 
rc.SetString(1, MyDialogBmp); vw.Execute(rc); But UPDATE always fails with: 
'Database Table(s) Update Failed' at vw.Execute line. I have tested a couple of 
different ways, always failing. Please, could somebody pointing me in right 
direction?
I suppose as I was able to update PROPERTIES, I could update Control table 
fields.
Thanks a lot. Best regards,
Enrique Dominguez

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Updating msi database (install time) [P]

2013-07-23 Thread Enrique Domínguez
Hi,
I'm doing that because I need on the fly change (wix variables don't allow me 
that because resolved at compile time)
Thanks for your reply.

-Mensaje original-
De: Steven Ogilvie [mailto:steven.ogil...@titus.com] 
Enviado el: martes, 23 de julio de 2013 15:06
Para: General discussion for Windows Installer XML toolset.
Asunto: Re: [WiX-users] Updating msi database (install time) [P]

Classification: Public
Enrique,

Why are you using a custom action to change the banner of the MSI? There is a 
WIX element to do that:
WixVariable Overridable=yes Id='WixUIBannerBmp' 
Value=$(var.resourcePath)\TFSTopBanner.bmp/
 WixVariable Overridable=yes Id='WixUIDialogBmp' 
Value=$(var.resourcePath)\TFSSide.bmp/

Regards,

Steve

-Original Message-
From: Enrique Domínguez [mailto:edoming...@goalsystems.com]
Sent: July-23-13 7:04 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Updating msi database (install time)

Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a 
custom action at install time, for changing installer's banners. It's C# code 
and looks like:
  
Microsoft.Deployment.WindowsInstaller.Database db = session.Database;
string stSQL = @UPDATE `Control` SET `Text`=? WHERE 
`Type`='Bitmap' AND `Control`='BannerBitmap';
Microsoft.Deployment.WindowsInstaller.Record rc = 
db.CreateRecord(1);
Microsoft.Deployment.WindowsInstaller.View 
vw=db.OpenView(stSQL);
rc.SetString(1, MyBannerBmp);
vw.Execute(rc);
rc.SetString(1, MyDialogBmp);
vw.Execute(rc);
But UPDATE always fails with: 'Database Table(s) Update Failed' at vw.Execute 
line. I have tested a couple of different ways, always failing. Please, could 
somebody pointing me in right direction?
I suppose as I was able to update PROPERTIES, I could update Control table 
fields.
Thanks a lot. Best regards,
Enrique Dominguez

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13 9:05:51 
AM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

 



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Win8.1 + DIFx problem...

2013-07-23 Thread Robert Randall
Microsoft has confirmed the bug.  They will get back to me with an ETA on
the fix (i.e. the build which will include the fix).

Best regards,
Robert


On Thu, Jul 18, 2013 at 12:05 PM, Robert Randall robert.r.rand...@gmail.com
 wrote:

 I will file a bug with Microsoft as well.  Thanks for the confirmation.


 On Tue, Jul 16, 2013 at 5:43 PM, Gonzalez, John 
 john.gonza...@intel.comwrote:

 Not personally, but yes there is a bug filed. Of course the more people
 file, the higher the priority. I'll update if I get a status.

 Thanks,
 John



 -Original Message-
 From: Bruce Cran [mailto:br...@cran.org.uk]
 Sent: Tuesday, July 16, 2013 3:24 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Win8.1 + DIFx problem...

 Have you filed a bug report with Microsoft?

 --
 Bruce Cran

 Sent from my iPhone

 On 16 Jul 2013, at 13:27, Gonzalez, John john.gonza...@intel.com
 wrote:

  I have the same, or similar, issue. It is not expected and showed up
 around the 9419 build release. Currently have no ETA of a fix.
 
  Thanks,
  John
 
 
  -Original Message-
  From: Robert Randall [mailto:robert.r.rand...@gmail.com]
  Sent: Tuesday, July 16, 2013 12:03 PM
  To: General discussion for Windows Installer XML toolset.
  Subject: [WiX-users] Win8.1 + DIFx problem...
 
  I have a device driver install which is working just fine.  However,
 I'm getting different behavior on Win8.1 compared to the previous releases
 of Windows (Vista, Win7, Win8).
 
  On the previous releases of Windows, removing the MSI package from the
 Control Panel-Programs and Features results in the device driver being
 removed from the driver store.  It also results in the replacement of the
 active drivers instances with the nul device driver.  I don't know if this
 is default DIFx behavior or something that WiX is asking DIFx to do for me.
 
  On Win8.1, the driver package is removed from the driver store but the
 driver instances are not being changed in any way.
 
  Is this expected behavior?
 
  I'll do some digging and see if DIFx is installing the nul driver based
 on the DIFx action or if WiX is doing it just to be kind (and yes, it is
 kind of WiX).
 
  Best regards,
  Robert.
 
  --
  Robert Randall | robert.r.rand...@gmail.com
  --
   See everything from the browser to the database with
  AppDynamics Get end-to-end visibility with application monitoring from
 AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
  Start your free trial of AppDynamics Pro today!
  http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
  lktrk ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
  --
   See everything from the browser to the database with
  AppDynamics Get end-to-end visibility with application monitoring from
  AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
  Start your free trial of AppDynamics Pro today!
  http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
  lktrk ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 See everything from the browser to the database with AppDynamics Get
 end-to-end visibility with application monitoring from AppDynamics Isolate
 bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!

 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 See everything from the browser to the database with AppDynamics
 Get end-to-end visibility with application monitoring from AppDynamics
 Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!

 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 Robert Randall | robert.r.rand...@gmail.com




-- 
Robert Randall | robert.r.rand...@gmail.com
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!

Re: [WiX-users] [wix-users] Impact of installed burn?

2013-07-23 Thread Wesley Manning
If the bundle exe is uninstalled it would uninstall the msi.  So you can 
install the standalone msi again after.  If you try to install msi after 
installing bundle exe the msi will not install as the bundle already installed 
it.
If you install MSI and then install bundle exe then you'll see two entries in 
ARP.  There are other effects too such as if you install a newer version of the 
MSI with the bundle exe already installed it will upgrade the MSI.   

Not sure if this will present a problem other than aesthetics.  Should really 
use a MSI alone or burn alone and not mix the two. 

Wes

-Original Message-
From: Tomas Köhn [mailto:tomas.k...@cellavision.se] 
Sent: July-23-13 6:09 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] [wix-users] Impact of installed burn?

Thanks,

Will this impact future installs of .msi files which has been part of bundle 
before (but has been uninstalled)?

/ Tomas

-Original Message-
From: Wesley Manning [mailto:wmann...@dynagen.ca]
Sent: den 22 juli 2013 14:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] [wix-users] Impact of installed burn?

Users will have no way to uninstall burn package AFAIK.  See 
http://www.joyofsetup.com/2013/07/05/burn-zero-one-or-n/ .

Wes

-Original Message-
From: Tomas Köhn [mailto:tomas.k...@cellavision.se]
Sent: July-22-13 8:20 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] [wix-users] Impact of installed burn?

We need to support installation from both .exe and .msi (for remote program 
distribution). As I understand, burn can't be used without installing into ARP. 
We want the program installation to be the same from both .exe and .msi.

If I set DisableModify=yes DisableRemove=yes, the bundle (burn) application 
will not be visible in Program  Feature. What will be stored in ARP and how 
will this impact the installed .msi?

Regards
Tomas
--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Running Burn installation on background thread

2013-07-23 Thread Marco Tognacci
I have a Burn setup made with a WPF Interface, while the setup is running I 
play some videos and I have seen that the setup running slower on some 
computers. Is it possible to run the setup on a background thread while the WPF 
interface is on the main thread?   
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Updating msi database (install time)

2013-07-23 Thread Blair Murri
You can only update temporary rows and tables at install time, not persistent 
rows. What you can do is delete the row you wish to update and then insert a 
new temporary row with the data you need.


Enrique Domínguez edoming...@goalsystems.com wrote:

Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a 
custom action at install time, for changing installer's banners. It's C# code 
and looks like:
  
Microsoft.Deployment.WindowsInstaller.Database db = session.Database;
string stSQL = @UPDATE `Control` SET `Text`=? WHERE 
`Type`='Bitmap' AND `Control`='BannerBitmap';
Microsoft.Deployment.WindowsInstaller.Record rc = 
db.CreateRecord(1);
Microsoft.Deployment.WindowsInstaller.View 
vw=db.OpenView(stSQL);
rc.SetString(1, MyBannerBmp);
vw.Execute(rc);
rc.SetString(1, MyDialogBmp);
vw.Execute(rc);
But UPDATE always fails with: 'Database Table(s) Update Failed' at vw.Execute 
line. I have tested a couple of different ways, always failing. Please, could 
somebody pointing me in right direction?
I suppose as I was able to update PROPERTIES, I could update Control table 
fields.
Thanks a lot. Best regards,
Enrique Dominguez

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to extract all files from container.'

2013-07-23 Thread TimM
Hello Rob,

This signing is becoming a real pain. If we do not sign the Burn .exe then the 
install will continue as expected, but when signed we always get this 
0x80004005 error.

Here what we are using in a MSBuilt .target file:

  !-- overriding SignBundle in wix2010.targets (from 
$(SMART_LIB)\tpl\win\wix\3.6.2928.0_RC\wix) --
  Target Name=SignBundle
MSBuild.ExtensionPack.Framework.MSBuildHelper TaskAction=StringToItemCol 
ItemString=$(TargetPath) Separator=;
  Output TaskParameter=OutputItems ItemName=TargetPathItem/
/MSBuild.ExtensionPack.Framework.MSBuildHelper
Exec
  Condition='$(SignThisFile)' != 'false'
  Command = '$(SignToolCommand) $(SignToolArgs) /d 
%(TargetPathItem.filename)%(TargetPathItem.extension) 
%(TargetPathItem.Identity)'
/
  /Target
  Target Name=SignBundleEngine
MSBuild.ExtensionPack.Framework.MSBuildHelper TaskAction=StringToItemCol 
ItemString=$(TargetPath) Separator=;
  Output TaskParameter=OutputItems ItemName=TargetPathItem/
/MSBuild.ExtensionPack.Framework.MSBuildHelper
Exec
  Condition='$(SignThisFile)' != 'false'
  Command = '$(SignToolCommand) $(SignToolArgs) /d 
%(TargetPathItem.filename)%(TargetPathItem.extension) 
%(TargetPathItem.Identity)'
/
  /Target

This will look correctly signed after the build, but as stated it will cause 
the 0x80004005 error.

Now I ran it through Process Monitor and therefore collected the .pml and burn 
logs. I have them attached through a .zip file so if this does not come through 
then let me know where I can put these files so that you can have access to 
them.

Thanks for looking into this for me.

From: robmen [via Windows Installer XML (WiX) toolset] 
[mailto:ml-node+s687559n7587507...@n2.nabble.com]
Sent: Monday, July 22, 2013 9:41 PM
To: Tim Mayert
Subject: [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to extract all files 
from container.'

dark.exe can extract the files. This error has been intermittent. If you
have a consistent repro, it would be awesome if you could use Process
Monitor to capture everything going on through the failure. Then put the
.pml file and the corresponding burn.log somewhere and I'd like to take a
look.


On Mon, Jul 22, 2013 at 2:55 PM, TimM [hidden 
email]/user/SendEmail.jtp?type=nodenode=7587507i=0 wrote:

 Okay tried a few thing suggested in to following web page, but still no
 go...
 Still same 0x80004005 error on extraction of files.

 Is there a command line that we can call to manually extract all files
 within the Burn bootstrapper .exe so that we can verify that the files are
 actually in the .exe file?

 Thanks.



 --
 View this message in context:
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587505.html
 Sent from the wix-users mailing list archive at Nabble.com.


 --
 See everything from the browser to the database with AppDynamics
 Get end-to-end visibility with application monitoring from AppDynamics
 Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 [hidden email]/user/SendEmail.jtp?type=nodenode=7587507i=1
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
[hidden email]/user/SendEmail.jtp?type=nodenode=7587507i=2
https://lists.sourceforge.net/lists/listinfo/wix-users


If you reply to this email, your message will be added to the discussion below:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587507.html
To unsubscribe from Wix 3.7 Burn error '0x80004005: Failed to extract all files 
from container.', click 
herehttp://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=7587152code=VGltTWF5ZXJ0QHNtYXJ0dGVjaC5jb218NzU4NzE1MnwtMTcxMzc3MTUwNA==.

Re: [WiX-users] Running Burn installation on background thread

2013-07-23 Thread Blair Murri
The setup is running on a different thread if you followed the defaults when 
creating your BootstrapperApplication.


Marco Tognacci mark...@live.it wrote:

I have a Burn setup made with a WPF Interface, while the setup is running I 
play some videos and I have seen that the setup running slower on some 
computers. Is it possible to run the setup on a background thread while the WPF 
interface is on the main thread?
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Updating msi database (install time) [P]

2013-07-23 Thread Phil Wilson
A couple of things:

1. You should be able to do this in WiX using the control condition stuff,
although I'm not an expert on how that works. There are always UI elements
that are shown or not depending on the value of a property. That's common
for things like the Next button, which won't be shown unless a property has
a certain value. The same is true of bitmaps. So I think you should be able
to have both bitmaps, and show the required one based on the value of a
property. The implementation in Windows Installer is in the ControlCondition
table.

2. There are a couple of things in your SQL flow that look a little odd. 
A) It's generally easier to have two SQL statements, one for each case, and
then just use the appropriate one. Then you're not playing with records. 
B) You're doing a view.Execute on something that is not a SQL statement.
That rc is still only a record you did a setstring on, nothing more. Your
methodology would require you to do a select first, then a view.Fetch to get
the record, then change it, then an update of the new record, something like
that anyway.

Anyway, as Blair points out, you'd need to delete and add a row.  

Phil 

-Original Message-
From: Enrique Domínguez [mailto:edoming...@goalsystems.com] 
Sent: Tuesday, July 23, 2013 6:41 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Updating msi database (install time) [P]

Hi,
I'm doing that because I need on the fly change (wix variables don't allow
me that because resolved at compile time) Thanks for your reply.

-Mensaje original-
De: Steven Ogilvie [mailto:steven.ogil...@titus.com] Enviado el: martes, 23
de julio de 2013 15:06
Para: General discussion for Windows Installer XML toolset.
Asunto: Re: [WiX-users] Updating msi database (install time) [P]

Classification: Public
Enrique,

Why are you using a custom action to change the banner of the MSI? There is
a WIX element to do that:
WixVariable Overridable=yes Id='WixUIBannerBmp'
Value=$(var.resourcePath)\TFSTopBanner.bmp/
 WixVariable Overridable=yes Id='WixUIDialogBmp'
Value=$(var.resourcePath)\TFSSide.bmp/

Regards,

Steve

-Original Message-
From: Enrique Domínguez [mailto:edoming...@goalsystems.com]
Sent: July-23-13 7:04 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Updating msi database (install time)

Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in
a custom action at install time, for changing installer's banners. It's C#
code and looks like:
Microsoft.Deployment.WindowsInstaller.Database db =
session.Database;
string stSQL = @UPDATE `Control` SET `Text`=? WHERE
`Type`='Bitmap' AND `Control`='BannerBitmap';
Microsoft.Deployment.WindowsInstaller.Record rc =
db.CreateRecord(1);
Microsoft.Deployment.WindowsInstaller.View
vw=db.OpenView(stSQL);
rc.SetString(1, MyBannerBmp);
vw.Execute(rc);
rc.SetString(1, MyDialogBmp);
vw.Execute(rc);
But UPDATE always fails with: 'Database Table(s) Update Failed' at
vw.Execute line. I have tested a couple of different ways, always failing.
Please, could somebody pointing me in right direction?
I suppose as I was able to update PROPERTIES, I could update Control table
fields.
Thanks a lot. Best regards,
Enrique Dominguez


--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13
9:05:51 AM.

The above classification labels were added to the message by TITUS Message
Classification. For more information visit www.titus.com.

 




--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your 

Re: [WiX-users] Product Version functions

2013-07-23 Thread Phil Wilson
If you're referring to file versions, I wouldn't be surprised if it's not
made available because it's not that complicated to just call
MsiGetFileVersion() and parse the results.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa370122(v=vs.85).as
px

Phil  

-Original Message-
From: Sean Farrow [mailto:sean.far...@seanfarrow.co.uk] 
Sent: Monday, July 22, 2013 10:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Hi,
What I need to do is get the product version (major/minor/build/release from
a file during a custom action.
I could write this, but wondered whether this is already included.
Cheers
Sean.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: 23 July 2013 04:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Always better to start with what you are trying to accomplish rather than
ask a very narrow question with no context.


On Mon, Jul 22, 2013 at 3:18 PM, Sean Farrow
sean.far...@seanfarrow.co.ukwrote:

 Hi,
 I'm just in the process of writing a custom action, I know file 
 version functions are in fileutil.cpp/h. Are Product version functions 
 surfaced by WiX dutil?
 Regards
 Sean.

 --
  See everything from the browser to the database with 
 AppDynamics Get end-to-end visibility with application monitoring from 
 AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
 lktrk ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] My experiences making a multi-language bundle

2013-07-23 Thread snowkoan
Hi,

Great post! How does this change in WiX 3.7? 

I downloaded the WiX 3.7 source and noticed that the wixstdba folder now
contains localized resources for a number of languages.

When creating a bundle: Is there a shortcut to reference these localized
themes, or do I have to copy them to my own project and reference them, as
in WiX 3.6?

Thanks,
Alnoor



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/My-experiences-making-a-multi-language-bundle-tp7208949p7587527.html
Sent from the wix-users mailing list archive at Nabble.com.

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Product Version functions [P]

2013-07-23 Thread Steven Ogilvie
Classification: Public
Who uses C++ for custom actions? Use C# :)

-Original Message-
From: Phil Wilson [mailto:phil.wil...@mvps.org]
Sent: July-23-13 3:53 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Product Version functions

If you're referring to file versions, I wouldn't be surprised if it's not made 
available because it's not that complicated to just call
MsiGetFileVersion() and parse the results.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa370122(v=vs.85).as
px

Phil  

-Original Message-
From: Sean Farrow [mailto:sean.far...@seanfarrow.co.uk]
Sent: Monday, July 22, 2013 10:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Hi,
What I need to do is get the product version (major/minor/build/release from a 
file during a custom action.
I could write this, but wondered whether this is already included.
Cheers
Sean.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: 23 July 2013 04:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Always better to start with what you are trying to accomplish rather than ask a 
very narrow question with no context.


On Mon, Jul 22, 2013 at 3:18 PM, Sean Farrow
sean.far...@seanfarrow.co.ukwrote:

 Hi,
 I'm just in the process of writing a custom action, I know file 
 version functions are in fileutil.cpp/h. Are Product version functions 
 surfaced by WiX dutil?
 Regards
 Sean.

 --
  See everything from the browser to the database with 
 AppDynamics Get end-to-end visibility with application monitoring from 
 AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
 lktrk ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13 3:59:25 
PM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

 



--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Product Version functions [P]

2013-07-23 Thread Steven Ogilvie
Classification: Public
I was being a smartss :)

-Original Message-
From: Phil Wilson [mailto:phil.wil...@mvps.org]
Sent: July-23-13 4:06 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Product Version functions [P]

The original reference was to a .cpp file, so I assumed C++ was needed ;) 

You can use your FileVersionInfo.FileVersion if you insist ;)   

Phil  

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: Tuesday, July 23, 2013 12:59 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions [P]

Classification: Public
Who uses C++ for custom actions? Use C# :)

-Original Message-
From: Phil Wilson [mailto:phil.wil...@mvps.org]
Sent: July-23-13 3:53 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Product Version functions

If you're referring to file versions, I wouldn't be surprised if it's not made 
available because it's not that complicated to just call
MsiGetFileVersion() and parse the results.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa370122(v=vs.85).as
px

Phil  

-Original Message-
From: Sean Farrow [mailto:sean.far...@seanfarrow.co.uk]
Sent: Monday, July 22, 2013 10:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Hi,
What I need to do is get the product version (major/minor/build/release from a 
file during a custom action.
I could write this, but wondered whether this is already included.
Cheers
Sean.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: 23 July 2013 04:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Always better to start with what you are trying to accomplish rather than ask a 
very narrow question with no context.


On Mon, Jul 22, 2013 at 3:18 PM, Sean Farrow
sean.far...@seanfarrow.co.ukwrote:

 Hi,
 I'm just in the process of writing a custom action, I know file 
 version functions are in fileutil.cpp/h. Are Product version functions 
 surfaced by WiX dutil?
 Regards
 Sean.

 --
  See everything from the browser to the database with 
 AppDynamics Get end-to-end visibility with application monitoring from 
 AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
 lktrk ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13
3:59:25 PM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

 




--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics 

Re: [WiX-users] Product Version functions [P]

2013-07-23 Thread Hoover, Jacob
I personally prefer my CA's to be in C++, and if you so choose you could use 
some of the functionality in dutil.  Ex: FileVersionFromString, 
FileVersionFromStringEx in fileutil.


-Original Message-
From: Phil Wilson [mailto:phil.wil...@mvps.org] 
Sent: Tuesday, July 23, 2013 3:06 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Product Version functions [P]

The original reference was to a .cpp file, so I assumed C++ was needed ;) 

You can use your FileVersionInfo.FileVersion if you insist ;)   

Phil  

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: Tuesday, July 23, 2013 12:59 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions [P]

Classification: Public
Who uses C++ for custom actions? Use C# :)

-Original Message-
From: Phil Wilson [mailto:phil.wil...@mvps.org]
Sent: July-23-13 3:53 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Product Version functions

If you're referring to file versions, I wouldn't be surprised if it's not made 
available because it's not that complicated to just call
MsiGetFileVersion() and parse the results.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa370122(v=vs.85).as
px

Phil  

-Original Message-
From: Sean Farrow [mailto:sean.far...@seanfarrow.co.uk]
Sent: Monday, July 22, 2013 10:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Hi,
What I need to do is get the product version (major/minor/build/release from a 
file during a custom action.
I could write this, but wondered whether this is already included.
Cheers
Sean.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: 23 July 2013 04:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Always better to start with what you are trying to accomplish rather than ask a 
very narrow question with no context.


On Mon, Jul 22, 2013 at 3:18 PM, Sean Farrow
sean.far...@seanfarrow.co.ukwrote:

 Hi,
 I'm just in the process of writing a custom action, I know file 
 version functions are in fileutil.cpp/h. Are Product version functions 
 surfaced by WiX dutil?
 Regards
 Sean.

 --
  See everything from the browser to the database with 
 AppDynamics Get end-to-end visibility with application monitoring from 
 AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
 lktrk ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13
3:59:25 PM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

 




--
See everything from the browser to the database with AppDynamics Get end-to-end 

Re: [WiX-users] Product Version functions [P]

2013-07-23 Thread Phil Wilson
The original reference was to a .cpp file, so I assumed C++ was needed ;) 

You can use your FileVersionInfo.FileVersion if you insist ;)   

Phil  

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com] 
Sent: Tuesday, July 23, 2013 12:59 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions [P]

Classification: Public
Who uses C++ for custom actions? Use C# :)

-Original Message-
From: Phil Wilson [mailto:phil.wil...@mvps.org]
Sent: July-23-13 3:53 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Product Version functions

If you're referring to file versions, I wouldn't be surprised if it's not
made available because it's not that complicated to just call
MsiGetFileVersion() and parse the results.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa370122(v=vs.85).as
px

Phil  

-Original Message-
From: Sean Farrow [mailto:sean.far...@seanfarrow.co.uk]
Sent: Monday, July 22, 2013 10:04 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Hi,
What I need to do is get the product version (major/minor/build/release from
a file during a custom action.
I could write this, but wondered whether this is already included.
Cheers
Sean.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: 23 July 2013 04:40
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Product Version functions

Always better to start with what you are trying to accomplish rather than
ask a very narrow question with no context.


On Mon, Jul 22, 2013 at 3:18 PM, Sean Farrow
sean.far...@seanfarrow.co.ukwrote:

 Hi,
 I'm just in the process of writing a custom action, I know file 
 version functions are in fileutil.cpp/h. Are Product version functions 
 surfaced by WiX dutil?
 Regards
 Sean.

 --
  See everything from the browser to the database with 
 AppDynamics Get end-to-end visibility with application monitoring from 
 AppDynamics Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.c
 lktrk ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
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-23-13
3:59:25 PM.

The above classification labels were added to the message by TITUS Message
Classification. For more information visit www.titus.com.

 




--
See everything from the browser to the database with AppDynamics Get
end-to-end visibility with application monitoring from AppDynamics Isolate
bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to extract all files from container.'

2013-07-23 Thread TimM
Hello Rob,

I forwarded an email to you with .zip file that contains the Process Monitor
and burn logs. Let me know if you did not get it and if not then let me know
where I can post this file for you to review.

We really need to get this bundle signing done as at the moment testing can
not test the app/install until we get signing fixed or turn it off
completely.

Thanks.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587532.html
Sent from the wix-users mailing list archive at Nabble.com.

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to extract all files from container.'

2013-07-23 Thread Hoover, Jacob
If you could get the logs posted I am sure a few others would take a look at 
them as well. If you don't have your own hosting, you could use tools like 
SkyDrive or DropBox to share the logs.

-Original Message-
From: TimM [mailto:timmay...@smarttech.com] 
Sent: Tuesday, July 23, 2013 3:30 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to 
extract all files from container.'

Hello Rob,

I forwarded an email to you with .zip file that contains the Process Monitor 
and burn logs. Let me know if you did not get it and if not then let me know 
where I can post this file for you to review.

We really need to get this bundle signing done as at the moment testing can not 
test the app/install until we get signing fixed or turn it off completely.

Thanks.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587532.html
Sent from the wix-users mailing list archive at Nabble.com.

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to extract all files from container.'

2013-07-23 Thread TimM
Okay I have placed the .zip file in my dropbox:
https://www.dropbox.com/home/Shared?select=ErrorLogfile.zip#!/home/Shared?select=ErrorLogfile.zip

So if this will help determine what is wrong with signing of our bundle then
that would be great.

If there are any other methods to signing a Burn bundle that could help with
our issues then could you point me in the right direction?

Thanks.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587534.html
Sent from the wix-users mailing list archive at Nabble.com.

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to extract all files from container.'

2013-07-23 Thread Hoover, Jacob
That's not a proper link, click on the Share Link option in drop box and it 
will give you a URL (with a bunch of random or checksum based info in it).  Ex: 
https://www.dropbox.com/s/jcr5mu6q8rqwrg9/...

-Original Message-
From: TimM [mailto:timmay...@smarttech.com] 
Sent: Tuesday, July 23, 2013 4:43 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] [SPAM] Re: Wix 3.7 Burn error '0x80004005: Failed to 
extract all files from container.'

Okay I have placed the .zip file in my dropbox:
https://www.dropbox.com/home/Shared?select=ErrorLogfile.zip#!/home/Shared?select=ErrorLogfile.zip

So if this will help determine what is wrong with signing of our bundle then 
that would be great.

If there are any other methods to signing a Burn bundle that could help with 
our issues then could you point me in the right direction?

Thanks.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587534.html
Sent from the wix-users mailing list archive at Nabble.com.

--
See everything from the browser to the database with AppDynamics Get end-to-end 
visibility with application monitoring from AppDynamics Isolate bottlenecks and 
diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [wix-users] Impact of installed burn?

2013-07-23 Thread Rob Mensching
The cool thing is that if you always use Bundles to install your MSI
packages, shared MSI packages will be correctly reference counted and only
removed when the last Bundle that needs it is removed. Totally avoids all
the bad behaviors.


On Tue, Jul 23, 2013 at 10:00 AM, Wesley Manning wmann...@dynagen.cawrote:

 If the bundle exe is uninstalled it would uninstall the msi.  So you can
 install the standalone msi again after.  If you try to install msi after
 installing bundle exe the msi will not install as the bundle already
 installed it.
 If you install MSI and then install bundle exe then you'll see two entries
 in ARP.  There are other effects too such as if you install a newer version
 of the MSI with the bundle exe already installed it will upgrade the MSI.

 Not sure if this will present a problem other than aesthetics.  Should
 really use a MSI alone or burn alone and not mix the two.

 Wes

 -Original Message-
 From: Tomas Köhn [mailto:tomas.k...@cellavision.se]
 Sent: July-23-13 6:09 AM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] [wix-users] Impact of installed burn?

 Thanks,

 Will this impact future installs of .msi files which has been part of
 bundle before (but has been uninstalled)?

 / Tomas

 -Original Message-
 From: Wesley Manning [mailto:wmann...@dynagen.ca]
 Sent: den 22 juli 2013 14:40
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] [wix-users] Impact of installed burn?

 Users will have no way to uninstall burn package AFAIK.  See
 http://www.joyofsetup.com/2013/07/05/burn-zero-one-or-n/ .

 Wes

 -Original Message-
 From: Tomas Köhn [mailto:tomas.k...@cellavision.se]
 Sent: July-22-13 8:20 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] [wix-users] Impact of installed burn?

 We need to support installation from both .exe and .msi (for remote
 program distribution). As I understand, burn can't be used without
 installing into ARP. We want the program installation to be the same from
 both .exe and .msi.

 If I set DisableModify=yes DisableRemove=yes, the bundle (burn)
 application will not be visible in Program  Feature. What will be stored
 in ARP and how will this impact the installed .msi?

 Regards
 Tomas

 --
 See everything from the browser to the database with AppDynamics Get
 end-to-end visibility with application monitoring from AppDynamics Isolate
 bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 See everything from the browser to the database with AppDynamics Get
 end-to-end visibility with application monitoring from AppDynamics Isolate
 bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 See everything from the browser to the database with AppDynamics Get
 end-to-end visibility with application monitoring from AppDynamics Isolate
 bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 See everything from the browser to the database with AppDynamics
 Get end-to-end visibility with application monitoring from AppDynamics
 Isolate bottlenecks and diagnose root cause in seconds.
 Start your free trial of AppDynamics Pro today!
 http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831iu=/4140/ostg.clktrk
___