[WiX-users] Creating directory under C:\Programdata same as what the user specified in the UI dialogue

2014-03-12 Thread Suvrajyoti Panda
Hi All, I had appended this query in another topic, so reposting the same under different heading. I have this requirement in which i want to create directory under C:\Programdata same as what the user specified in the UI dialogue .I am trying to do that using . Below is the code:

Re: [WiX-users] what is the CustomAction after Uninstall?

2014-03-12 Thread Pavan Konduru
Use the TIME and DATE property of the WIX installer. Where do you want to capture it? --Pavan -Original Message- From: Mamidi, Balasubrahmanyam [mailto:balu.mam...@flightsafety.com] Sent: Wednesday, March 12, 2014 8:50 AM To: General discussion about the WiX toolset. Subject: [WiX-users]

Re: [WiX-users] Conditional SSPI / SQL Authentication on SqlScript

2014-03-12 Thread Levi Wilson
I tried this example; yours has the @User set on the rather than the . I tried this, so I removed the @User from the SqlDatabase and added it to SqlScript instead...this looks like it ONLY uses Integrated Security (because of the absence of it on the and NEVER uses the SQL Authentication. This i

Re: [WiX-users] Conditional SSPI / SQL Authentication on SqlScript

2014-03-12 Thread Levi Wilson
Is there a way to make the database conditional? So define two databases that are the exact same thing, minus the @User attribute? I'm at a loss. On Wed, Mar 12, 2014 at 6:19 PM, Levi Wilson wrote: > I tried this example; yours has the @User set on the rather > than the . I tried this, so I re

Re: [WiX-users] Conditional SSPI / SQL Authentication on SqlScript

2014-03-12 Thread John Cooper
Well, I had only one product that deploys using sql:SqlDatabase, and it has recently converted to SqlPackage. Here's a sampling of the code I use which has been tested under both Windows and SQL Authentication on several products for over two years:

Re: [WiX-users] Conditional SSPI / SQL Authentication on SqlScript

2014-03-12 Thread Levi Wilson
This leads me to believe that I should be able to do this? http://sourceforge.net/p/wix/bugs/626/ On Wed, Mar 12, 2014 at 4:19 PM, Levi Wilson wrote: > John, how were you able to accomplish this? I tried to explicitly do this > like so: > > > > > > > Name='[EMPTY_USER]' > > Password='[EMPTY

Re: [WiX-users] Conditional SSPI / SQL Authentication on SqlScript

2014-03-12 Thread Levi Wilson
John, how were you able to accomplish this? I tried to explicitly do this like so: Doing so yields "ExecuteSqlStrings: Error 0x80040e4d: failed to connect to database: ''" in the output log, and the EMPTY_USER and EMPTY_PASSWORD do not even show up (because they were never set). I'm not sur

[WiX-users] Display Windows Select User Dialog

2014-03-12 Thread Arthur, Christopher
Hi, Is there any possibility to show Windows default Dialog to search user within Windows within custom Dialog. Bye Wichtiger Hinweis: Diese E-Mail und etwa angehängte Dateien können vertrauliche Informationen enthalten und sind ausschließlich für den/die Adressaten bestimmt. Sollten Sie irr

[WiX-users] Binding FileVersion in a bootstrapper

2014-03-12 Thread Scott Moyer
I am not understanding examples on how to set a bundle version from the version of an exe file. I did so very simply in my msi as shown below: ... ... ... But can't figure out how to do the same for a Bundle that cont

[WiX-users] Run As Admin required to run installer as passive from command line

2014-03-12 Thread Dan Blanchard
Hello, Moving to VS/TFS 2013 from 2010 so can't use visual studio setup project anymore which I am ok with... but having an issue with using WIX, I would appreciate some guidance. Currently we sell complete systems with a non-admin account auto logged in, some on Win XP, some on Windows 7, som

Re: [WiX-users] Generating a unique file name

2014-03-12 Thread Carter Young
Don't Delete it. Store it. AppData is a Hidden System Directory in the %USERS% Directory Structure. The only people who see it are those of us w/ Show All Files ticked. After Every major upgrade overwrite it, i.e your custom action should 1. Check to see if the file exists in the AppData

[WiX-users] what is the CustomAction after Uninstall?

2014-03-12 Thread Mamidi, Balasubrahmanyam
HI, what is the CustomAction after Uninstall? I need to capture the date when It is uninstalled. Any help Thanks, Balu -- Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide

Re: [WiX-users] Generating a unique file name

2014-03-12 Thread Soren Dreijer
That should probably do it. Now I just have to figure out how to only copy the .config during an upgrade, and how to properly delete it afterwards (although the CA could do this potentially). Cheers, Soren On Tue, Mar 11, 2014 at 1:00 PM, Carter Young wrote: > In that Case, create a directory

Re: [WiX-users] R: How to install VSTO Excel add-in that use dll with COM-visible objects?

2014-03-12 Thread Verbuk, Artem
Yes, Attached is the zip folder that contains: 1 ExcelAddin.wixproj - WIX setup project file 2 PreBuildEventsOfWixProject.txt - text file, that contains pre build event of the setup project (you can find those in project file also) 3 All "*.wxs" and ".xslt" files of the project

Re: [WiX-users] usassign variable value to Property value--Any help?

2014-03-12 Thread Mamidi, Balasubrahmanyam
Thanks for reply Phil. Can you please provide sample code to use the variable value? Regards, Balu -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: Wednesday, March 12, 2014 7:56 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] usassign variable v

Re: [WiX-users] usassign variable value to Property value--Any help?

2014-03-12 Thread Phill Hogland
I think the error is because AppendFormat is not passing an object (test) to the formatted string. You also need to use HTML entities in the XML or use CDATA. string test = "xyz.msi"; sb.AppendFormat(@"", test); http://www.dotnetperls.com/appendformat http://en.wikipedia.org/wiki/List_of_XML_an

[WiX-users] Burn and EnableFeatureSelection="yes"

2014-03-12 Thread Marshall, Peter (LNG-LEE)
Hi, I'm having a strange problem with a Bundle which is very odd. We have a Bundle to install ( if required ) 1) .NET 4 Runtime 2) VSTO Runtime 3) Our product installer MSI - which has DisplayInternalUI="yes" and EnableFeatureSelection="yes" For our product we have a 'hidden'

Re: [WiX-users] Fwd: How to have the shortcut name same as the installation directory

2014-03-12 Thread Suvrajyoti Panda
Thanks for the replies Phil and Jacob. I would look and try to find a solution in the way that you have suggested. But apart from this i have another requirement. Below is the code: Whi

[WiX-users] R: How to install VSTO Excel add-in that use dll with COM-visible objects?

2014-03-12 Thread Bo Zhang [fabbricadigitale]
Could you share your WiX code instead of VSTO project? -Messaggio originale- Da: Verbuk, Artem [mailto:artem.ver...@intel.com] Inviato: mercoledì 12 marzo 2014 09.18 A: wix-users@lists.sourceforge.net Oggetto: [WiX-users] How to install VSTO Excel add-in that use dll with COM-visible obj

[WiX-users] Re: Adding Application Shortcut to Specific User's Startup Folder.

2014-03-12 Thread sergey.s.betke
This enough: С уважением, Бетке Сергей Сергеевич. От: Pavan Konduru Отправлено: ‎суббота‎, ‎22‎ ‎февраля‎ ‎2014‎ г. ‎6‎:‎10 Кому: General discussion about the WiX toolset. Копия: General discussion about the WiX toolset. Thank you . That makes more sense now. Sent from my

[WiX-users] How to install VSTO Excel add-in that use dll with COM-visible objects?

2014-03-12 Thread Verbuk, Artem
Hi guys, I really hope to get some help, since I am trying to do something for 3 days already and I had no luck to accomplish what I need to. I have a VSTO Excel 2010 add-in created using VSTO template in VS2010. The code of an add-in is very simple: public partial class ThisAddIn {

Re: [WiX-users] Using Fragments and Directory Structure

2014-03-12 Thread sergey.s.betke
sample code - https://github.com/Metrolog/ITG.NevaTest3303P/blob/master/ITG.WixUtils/Common.Directories.wxs С уважением, Бетке Сергей Сергеевич. От: Phill Hogland Отправлено: ‎пятница‎, ‎28‎ ‎февраля‎ ‎2014‎ г. ‎21‎:‎09 Кому: General discussion about the WiX toolset. You can certai

Re: [WiX-users] Generating a unique file name

2014-03-12 Thread sergey.s.betke
Yes, simple jscript or vbscript custom action without dll. С уважением, Бетке Сергей Сергеевич. От: Soren Dreijer Отправлено: ‎вторник‎, ‎11‎ ‎марта‎ ‎2014‎ г. ‎5‎:‎58 Кому: General discussion about the WiX toolset. Hi Harold, Then we're back to doing a custom action, though, which