[WiX-users] Need help, how to put a condition on a merge module in Product.wxs

2013-07-29 Thread StevenOgilvie
Hi folks, I have a Services installer that uses 5 merge modules (no I can't go away from merge modules to wixlibs not the way our services install we have 5 different services that install a base of same files for each service in a different directory for each service)... Currently I have to VS s

Re: [WiX-users] Need help, how to put a condition on a merge module in Product.wxs

2013-07-29 Thread StevenOgilvie
damn Nabble takes out the condition: for the component to be installed on X86 machine: < ! [ CDATA[ NOT(VersionNT64) OR $(var.Platform) = "x86" ] ] > for x64 machine: < ! [ CDATA[VersionNT64 OR $(var.Platform) = "x64" ] ] > -- View this message in context: http://windows-installer-xml

Re: [WiX-users] Need help, how to put a condition on a merge module in Product.wxs

2013-07-29 Thread StevenOgilvie
your saying this is at compile time? I have a variables.wxi include file that I include with my product.wxs -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Need-help-how-to-put-a-condition-on-a-merge-module-in-Produc

[WiX-users] is there a way to set a variable by selecting a different radiobutton in BURN?

2013-08-08 Thread StevenOgilvie
Hi folks: I have a hyperlink for the EULA (htm file) I am allowing the user to select which server to install i.e. RadioButton1 "server" RadioButton2 "server express" RadioButton3 "another install" is there a way to set a variable based on which radiobutton has been selected? thanks, Steve

Re: [WiX-users] is there a way to set a variable by selecting a different radiobutton in BURN?

2013-08-09 Thread StevenOgilvie
Rob do you have any ideas? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/is-there-a-way-to-set-a-variable-by-selecting-a-different-radiobutton-in-BURN-tp7587887p7587910.html Sent from the wix-users mailing list archive at Nabble.com. ---

[WiX-users] Which is being released?

2013-08-09 Thread StevenOgilvie
On the wixtoolset.org web site I see a 3.8 release and a 4.0. When are you going to release 3.8 and what is the release timeframe for 4.0 and what is the difference between the two? thanks, Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/W

[WiX-users] Merge Module question...

2013-09-24 Thread StevenOgilvie
Hi all, I have 6 services merge modules, I have them building for both x86 and x64 (different output paths) all is fine… I have to add 2 SQL Lite files, x86 and x64 to the 6 merge modules (the binaries are built AnyCPU) I decided to use 1 wixlib and condition the 2 files Not Installed and Not

Re: [WiX-users] Merge Module question...

2013-09-24 Thread StevenOgilvie
I have added it back to 1 WIXLIB when I compile it works but I get this error twice for each merge module: Warning 22 ICE30: The target file 'kd1er3dy.dll|SQLite.Interop.dll' might be installed in '[TARGETDIR]\EnterpriseAuditLogService\' by two different conditionalized components on an LFN

[WiX-users] Can't compile Install getting ICE30 error...

2013-10-08 Thread StevenOgilvie
Hi guys, I am trying to install 1 file to 2 different locations by using 2 different directory elements, 2 different component elements and 2 different file elements. Before I do this I have a custom action that copies the powershell.exe.config to powershell.exe.config.bak (I try both the system3

Re: [WiX-users] Can't compile Install getting ICE30 error...

2013-10-08 Thread StevenOgilvie
Solved it... I created a customaction to populate a property with the powershell folder I use the Directory "property" Directory="POWERSHELLX86_DIR" as the directory for the component... Sigh.. Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2

[WiX-users] Custom action was working now it isn't.... HELP...

2013-10-31 Thread StevenOgilvie
A different pair of eyes should help... I have a custom action that reads the registry and goes through the SQL Server Instances to get the last instance name (if there are more than one)... Was working like a charm, now for about a week it stopped working and I am getting this error: Action ended

[WiX-users] Question re WIX other MSI installer tools...

2013-11-15 Thread StevenOgilvie
Hi, I work for a small company and we are using WIX for our Enterprise software. We have a Server application with Services and use a SQL Server database. Our Client Software connects to the Server/Database to get client configuration info via the Services that is also installed with the Client so

Re: [WiX-users] Question re WIX other MSI installer tools...

2013-11-15 Thread StevenOgilvie
Burn does NOT allow you to collect information from the user and then pass that information to the MSI's it is a tool to allow you to install pre-requisites and handle your software installer... To create a user experience that collects information it would require a CUSTOM BA... Steve -- View

[WiX-users] Feature based MSI and Boostrapper question...

2013-12-05 Thread StevenOgilvie
Hi all, Quick question… I haven’t set this up yet but would like to know if it is feasible first before doing the work… My application’s MSI has 3 features” 1. Client app 1 2. Client app 2 3. Client app 3 There is a feature tree page so you can select which feature you want to ins

[WiX-users] Help, Custom Action not working in InstallUISequence...

2013-12-15 Thread StevenOgilvie
Hey all, I hope someone can help me out here I am banging my head on this one... A little history, I have a Web Server installer that creates a Web App Pool and a Web Site. I have a Welcome, License, Choose DB, Choose Web Site info etc...pages in my UI In the Web Site info I have an edit box for

Re: [WiX-users] Help, Custom Action not working in InstallUISequence...

2013-12-15 Thread StevenOgilvie
I got it working... (my bad should have googled more) but in case anyone else is having issues here is what i did: WIX_UPGRADE_DETECTED WIX_UPGRADE_DETECTED WIX_UPGRADE_DETECTED WIX_UPGRADE_DETECTED -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nab

[WiX-users] Where in the source does it handle the image control in the bootstrapper?

2013-12-19 Thread StevenOgilvie
Hi guys, I am using 3.7. I am trying to figure out where in the source I can change the behaviour of the Image: to make it "to back" so the Title is "in front": #(loc.Title) I have changed the image to be a TopBanner.bmp but sometimes the title is in the background and I want it to be in fo

[WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file

2014-01-22 Thread StevenOgilvie
Hello, I use 1 product.wxs file at build time, the project file has different configurations for X86 and X64 which allows me build 2 MSI's one for 32 bit and one for 64 bit. I have used these conditions but which one is correct? OR

Re: [WiX-users] Confused... when installing a 32/64 bit MSI using 1 product.wxs file [P]

2014-01-27 Thread StevenOgilvie
Blair/Rob is this statement correct: So are you saying I should use: and NOT What about my wixlib where I have 2 files that have a 32 bit version and a 64 bit version what is the proper way to say 32 bit file install on a 32 bit OS and 64 bit file install on a 64 bit OS AND 32 bit file can

[WiX-users] Best practice for setting x86/x64 for MSI's and installing files...

2014-01-27 Thread StevenOgilvie
Hi, I didn't get much traction on my question or at least my last question... ALL of my MSI use this format in a variable.wxi files I have: Should I use: and NOT ?? What about my wixlib where I have 2 files that have a 32 bit version and

Re: [WiX-users] Setting the version number...

2012-10-16 Thread StevenOgilvie
Hi Rob, I have a wxi variable file with: then my product.wxs file with: Must be an easy way to read a fileversion and use that as your productversion? Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Setting-the-v

Re: [WiX-users] CloseApplication

2012-10-17 Thread StevenOgilvie
I am trying to close Outlook since our product is a add-in for outlook, the uninstall brings the FileInUseProcess which is great, but I also want this for the INSTALL I am doing this but it is not working: CA: Setting file in use process... Any su

Re: [WiX-users] CloseApplication

2012-10-17 Thread StevenOgilvie
I am trying to close Outlook since our product is a add-in for outlook, the uninstall brings the FileInUseProcess which is great, but I also want this for the INSTALLI am doing this but it is not working: CA: Setting file in use process...Any suggestions?Steve

[WiX-users] Installing to inetpub\wwwroot...

2012-10-18 Thread StevenOgilvie
Hi, I am trying to install a web application to the following directory: C:\inetpub\wwwroot\wws\VirtualDirectories\[Web_SITE_PORT] the WEB_SITE_PORT property is set to by default but within the UI of the installer we ask the User if they want to change the port and we verify that the port is

[WiX-users] Conditional util:XmlFile change...

2012-10-19 Thread StevenOgilvie
I have a .config file I need to change if the install running is the client install and NOT the server install (we share the services between client and server installations) I have this code: and I want to do something like this: < ! [CDATA[CLIENT_INSTALL="1"] ] > but

Re: [WiX-users] Installing to inetpub\wwwroot...

2012-10-22 Thread StevenOgilvie
I really need help on this... -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Installing-to-inetpub-wwwroot-tp7581451p7581511.html Sent from the wix-users mailing list archive at Nabble.com.

Re: [WiX-users] Conditional util:XmlFile change...

2012-10-22 Thread StevenOgilvie
decided to use two components that modify the .config file and condition it one if a Server install the other if a Client install... Thanks Rob and Peter for your input :) Cheers, Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Conditional

Re: [WiX-users] Installing to inetpub\wwwroot...

2012-10-22 Thread StevenOgilvie
figured it out... saw a build warning about a property I created with another property as part of the path, you have to create a custom action to do that: NOT Installed Sigh it pays to look at warnings... -- View this message in context: http://windows-installer-xml-wix-toolset.68755

[WiX-users] calling a deferred customaction dll using CAQuietExec

2012-10-24 Thread StevenOgilvie
I have a deferred custom action in a merge module that is a call to a C# customaction dll I created, but I want it to be quiet so I did this: CA: Setting CustomAction to configure the connection strings for Web.config... CA: Configuring the connection strings f

Re: [WiX-users] calling a deferred customaction dll using CAQuietExec

2012-10-24 Thread StevenOgilvie
I have a custom action: NOT Installed if execute=immediate runs before it should BUT the MSI properties are read in by my customaction dll, however it fails since the files haven't been installed yet :( If I set the execute=deferred it runs when it is supposed to BUT the properties

Re: [WiX-users] calling a deferred customaction dll usingCAQuietExec

2012-10-25 Thread StevenOgilvie
Phew figured it out with the help of Peter: read the msdn info re deferred custom actions: To write the value of a property into the installation script for use during a deferred execution custom action Insert a small custom action into the installation sequence that sets the property of interest t

[WiX-users] custom actions in burn?

2012-10-31 Thread StevenOgilvie
Hi all, I have a product that installs a 32 bit version and 64 bit version installer (two .msi) I have a custom action in product.wxs that determines the "bitness" of Microsoft Outlook (whether the user installed 32 bit or 64 bit version of Outlook, our product is an add-in). so I have 2 msi's, b

[WiX-users] stop bootstrapper creating ARP registry key...

2012-11-05 Thread StevenOgilvie
Hi all, I am using the BootStrapper to install requisites that stay on the machine after the companies product is removed... I have NO need for the bootstrapper to create a registry key under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall we install our product using the bootstrapper an

Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-07 Thread StevenOgilvie
Okay I have my main MSI NOT in ARP: And in the bundle.wxs DisableModify="yes" DisableRemove="no" DisableRepair="no" and my MSI is set as: So when I do go into ARP I don't see the MSI in it... I do see the bootstrapper (bundle.wxs) there, I run uninstall, choose uninstall, but it only rem

[WiX-users] app.config within my customaction dll...

2012-11-09 Thread StevenOgilvie
Hi all, I have a custom action dll (C# custom action dll) that calls a managed utility dll… We need to update the connecton string, so I have placed it in the app.config… When the installer is packaged, does the app.config (well the name of project.dll.config file) get packaged with it as well? h

[WiX-users] Using CustomAction.Config file with DefaultRoleProvider...

2012-11-15 Thread StevenOgilvie
Hi, My installer is installing a web site... I have a custom action that requires the RoleManager to be enabled so I added: However as soon as my first custom action runs during the install it chokes: 1.

[WiX-users] Installing SQL Server 2012 Express in bootstrapper...

2012-11-30 Thread StevenOgilvie
I am having an issue where I have both the x86 and x64 versions of SQL Server Express 2012 So if the OS is 64 bit install the 64 bit version, if the OS is 32 bit install the 32 bit version... But if I have neither both install (on a 64 bit OS) :( My code is: Detection:

[WiX-users] Extract packages from bootstrapper?

2012-11-30 Thread StevenOgilvie
Hi folks, Can you extract the ExePackage/MsiPackage (s) from the bootstrapper .exe using a command line? I have 13 EXE's and MSI's in my bootstrapper EXE... most are pre-requisites for my product (2 MSI's) Can I extract the packages/msi's from the exe for someone using GPO? Thanks, Steve --

Re: [WiX-users] Extracting embedded packages from the standard bootstrapper

2012-12-04 Thread StevenOgilvie
I third the request Where does the /layout place the embedded apps? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Extracting-embedded-packages-from-the-standard-bootstrapper-tp7578806p7582233.html Sent from the wix-users mailing list archiv

[WiX-users] Does the bootstrapper return any error codes?

2012-12-04 Thread StevenOgilvie
Hello, Does the bootstrapper return any error codes? (other than the log files) If I have 6 pre reqs and my main installer, and one of the pre reqs fail, the bootstrapper will fail, does it return any thing? thanks, Steve -- View this message in context: http://windows-installer-xml-wix-too

[WiX-users] Installing Pre-req from DownloadURL...

2012-12-04 Thread StevenOgilvie
HI all, I have my code like this: http://go.microsoft.com/fwlink/?LinkId=223704"; Name="dotNetFx40_Full_x86_x64.exe" InstallCommand="/passive /norestart"

Re: [WiX-users] Installing Pre-req from DownloadURL...

2012-12-04 Thread StevenOgilvie
If I need to have that file in the same folder as bundle.wxs, what is the point of using DownloadUrl? I tried to use RemotePayload but was missing CertificatePublicKey, CertificateThumbprint and most important Hash I looked at the .net exe it was signed put the thumbprint was wrong and where do I

[WiX-users] Registry search and condition message in installer

2012-12-18 Thread StevenOgilvie
I have a 32 bit installer, it can run on a 32 bit or a 64 bit OS... On the 32 bit OS only the 32 bit pre requisites are run, but on the 64 bit OS both 32/64 bit pre requisites are run. The installer verifies that the pre requisites are installed (ya its overkill but that is another story)... On a

[WiX-users] bootstrapper Close button should be Cancel to be consistent...

2012-12-19 Thread StevenOgilvie
The burn/bootstrapper has two buttons: Install and Close Should be: Install and Cancel Since if you click Close you get a message box asking if your sure you want to "cancel"... Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/bootstrappe

Re: [WiX-users] launch webpage on uninstall

2012-12-19 Thread StevenOgilvie
Palbinder, I was looking for that, I had a website to launch after the install was done :) Works like a charm, I was trying to launch http://localhost:[WEB_SITE_PORT]/"; /> which didn't work and the log file was pretty useless... Thanks! Steve -- View this message in context: http://windows

[WiX-users] Upgrades NOT working on a new install....

2012-12-20 Thread StevenOgilvie
Hi all, I have implemented upgrades by doing the following (I have an include file that has the product/package properties which I define and include the include file :)... then: where I have the following defined: and have a productcode and upgradecode that I don't change... c

Re: [WiX-users] Takes two clicks on Next button to move forward on Custom Dialog...

2012-12-20 Thread StevenOgilvie
I really need help on this one... I am at a loss why it is taking two click :( -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Takes-two-clicks-on-Next-button-to-move-forward-on-Custom-Dialog-tp7582481p7582515.html Sent from the wix-users mailing l

Re: [WiX-users] Takes two clicks on Next button to move forward on Custom Dialog...

2012-12-22 Thread StevenOgilvie
Fixed... the logic is killing me :) < ! [ CDATA[NOT Installed OR (SQL_CONTINUE_TO_NEXT_PAGE AND (SQL_CONTINUE_TO_NEXT_PAGE = "1")) ] ] > < ! [ CDATA[NOT Installed OR (IIS_CONTINUE_TO_NEXT_PAGE AND (IIS_CONTINUE_TO_NEXT_PAGE = "1")) ] ] > NOTE: I put spaces in the < ! [ CDDATA since the nabble e

[WiX-users] WixLibs questions...

2013-01-02 Thread StevenOgilvie
I have about 10 WixLibs and they are all binaries, an example is such: http://schemas.microsoft.com/wix/2006/wi";> I use WixLibRedirectFolder in all of the wixlibs as the directory... I have 4 msi's with merge modules, I want to move the merg

Re: [WiX-users] WixLibs questions...

2013-01-03 Thread StevenOgilvie
duplicate 10 wixlibs so I can install to different > > locations doesn't make sense... I will just revert my changes back to > > the merge module format... > > > > steve > > > > -Original Message- > > From: Peter Shirtcliffe [mailto:[hidd

[WiX-users] Burn InstallCondition not working when it used to :(

2013-01-22 Thread StevenOgilvie
Hi Folks, I have two installers, one 32 bit and one 64 bit. They depend on the bit'ness of Outlook... so if Outlook is 32 bit, then the 32 bit installer runs, if Outlook is 64 bit then the 64 bit installer runs... It was working before and now isn't... the only thing I have done recently is instal

Re: [WiX-users] Burn InstallCondition not working when it used to :(

2013-01-22 Thread StevenOgilvie
Complete Bundle.wxs WITH .NET 4.0: http://schemas.microsoft.com/wix/2006/wi"; xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"; xmlns:net="http://schemas.microsoft.com/wix/NetFxExtension"; xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>

[WiX-users] Weird UI happening in MSI when I remove the checkbox element on Finish dialog

2013-01-24 Thread StevenOgilvie
Hello, I added the check box to launch the app (URL) on the Finish dialog: This is in the PRODUCT.WXS, however I want to remove it from the Finish dialog in the MSI and add the Launch button in Burn 3.7 (I install our Server MSI, then install our Services MSI, the check box is in the first MSI, if

Re: [WiX-users] Weird UI happening in MSI when I remove the checkbox element on Finish dialog

2013-01-24 Thread StevenOgilvie
oops sorry I don't comment OUT this line it is needed: 1 -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Weird-UI-happening-in-MSI-when-I-remove-the-checkbox-element-on-Finish-dialog-tp7583123p7583124.html Sent from the wix-users mailing list arch

[WiX-users] Burn question, how can force /norestart on my pre requisite MSI's?

2013-01-24 Thread StevenOgilvie
I have 6 pre requisite MSI's then my 2 product MSI's... I want to ensure that the pre req's don't want to reboot so the rest of the MSI's fail... here is the scenario, I have my product installed, you goto ARP or PF and click uninstall, burn comes up and I click on Repair... One of the pre requis

[WiX-users] Weird Repair happening...

2013-01-29 Thread StevenOgilvie
I have installed my product and it works like a charm... I have modified my install to work with Repair since I have a lot of custom actions and 5 merge modules. When I run repair all is good EXCEPT all files are being installed in 1 folder I have 5 folders: C:\Program Files\MYCORP\MYCORP Servi

[WiX-users] When doing a REPAIR, all files are going into 1 folder instead of the specific folders...

2013-01-30 Thread StevenOgilvie
Really need some help with this! thanks, Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Weird-Repair-happening-tp7583229p7583272.html Sent from the wix-users mailing list archive at Nabble.com. --

Re: [WiX-users] When doing a REPAIR, all files are going into 1 folder instead of the specific folders...

2013-01-30 Thread StevenOgilvie
TITUS_Message_Classification_20130129160922_6_ServicesInstall_x64.log now attached... -- View this message in context: http://windows-installer-

Re: [WiX-users] When doing a REPAIR, all files are going into 1 folder instead of the specific folders...

2013-01-31 Thread StevenOgilvie
Any idea Rob? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Weird-Repair-happening-tp7583229p7583292.html Sent from the wix-users mailing list archive at Nabble.com. --

[WiX-users] FYI Building 64 bit MSI and getting LGHT0204: ICE80: This 32BitComponent uses 64BitDirectory WixLibRedirectFolder error

2013-02-01 Thread StevenOgilvie
I have 2 32 bit installs and 2 64 bit installs (same but different OS bit) the 32 bit installers are fine... However the 64 bit installers were giving the the LGHT0204: ICE80 errors, and it took me a while to figure out what I had changed to cause this... So use this as a FYI I have Merge modules

[WiX-users] Reference wixlibs in two different Features...

2013-02-04 Thread StevenOgilvie
I have two features that reference the same WixLibs but use two different folders...

Re: [WiX-users] Reference wixlibs in two different Features...

2013-02-04 Thread StevenOgilvie
SORRY IGNORE THIS QUESTION... -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Reference-wixlibs-in-two-different-Features-tp7583361p7583362.html Sent from the wix-users mailing list archive at Nabble.com. --

[WiX-users] TopBanner bitmap looks "lower" resolution

2013-02-07 Thread StevenOgilvie
Hi folks, I am using WIX 3.7... I have replaced the default BMP for our companies version: and I am using Windows 7 Enterprise 64 bit, when running the resolution at Smaller 100% (Control Panel -> Appearance and Personalization -> Display) the top/side banner looks great... However when runni

[WiX-users] How do you turn off REPAIR in the boostrapper in ARP or Programs and Features?

2013-02-14 Thread StevenOgilvie
Hello, I have noticed that the DisableRepair="yes" in the Bundle element in the bootstrapper doesn't work. How do you turn off repair in the bootstrapper? Thanks, Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-do-you-turn-off-REPAIR-

[WiX-users] Burn usage...

2013-03-05 Thread StevenOgilvie
Hi folks, Is it possible to use burn like an autorun? i.e. I have 3 products, 1 is a server application, the other is the server application (without any UI), the other is a client application. By using Radial buttons, can I let the user choose which application to install? 1. would they be able

[WiX-users] Running PowerShell script...

2013-03-05 Thread StevenOgilvie
Hi guys I have googled and done everything I think I should have done but I am getting a funky error in the MSI log file, has anyone else had this issue, if so how did you fix it? Install the Powershell file Set the custom action CA: Installing NServiceBus

Re: [WiX-users] Running PowerShell script...

2013-03-05 Thread StevenOgilvie
-0291 www.fiserv.com > -Original Message- > From: StevenOgilvie [mailto:[hidden email] > ] > Sent: Tuesday, March 05, 2013 2:14 PM > To: [hidden email] > Subject: [WiX-users] Running PowerShell script... > > Hi guys > > I have googled and done everythi

[WiX-users] Using Burn/bootstrapper....

2013-03-08 Thread StevenOgilvie
Hi guys, Using Burn aka the bootstrapper is their a way to show the user what software will be installed? i.e. create a new page before the Progress page to display what pre requesites will be installed and what our company software is going to be installed? thanks, Steve -- View this message

[WiX-users] Any ideas on how to solve MessageBox focus, can be lost (using Custom Action DLL)

2013-03-13 Thread StevenOgilvie
Hi all, I have a Custom Action DLL (C#) Within the Welcome page to the "ready to install" page I have been able to populate a MSI Property for any error messages/exceptions that are caused by the Custom Action calls.. i.e. At beginning of the Custom Action method: SetSessionProperty(session, "CUS

Re: [WiX-users] Any ideas on how to solve MessageBox focus, can be lost (using Custom Action DLL)

2013-03-14 Thread StevenOgilvie
Solved :) Using this: catch (Exception ex) { WriteErrorLogInstall(session, "Method failed: ", ex, true); if (session != null) { session.Message( InstallMessage.User + (int)MessageBoxIcon.Error

Re: [WiX-users] Using Property's values in Messages

2013-03-14 Thread StevenOgilvie
You can do it various ways, the easiest way is to let QA see the value in the MSI log file, in your product WXS file add: after the install is done in your %temp% folder will be a MSI log file, look for the property name and its value will be recorded... or display the properties via custom actio

[WiX-users] Adding a new "page" to the bootstrapper...

2013-03-27 Thread StevenOgilvie
Hi all, I am wondering if anyone has added a new page to the bootstrapper? What I want to do is have the Welcome page (my welcome page has two radio buttons to select the install they want to launch), click Next, which goes to a 2nd page that describes what pre-requisites will be installed if mis

[WiX-users] Upgrades...

2013-04-02 Thread StevenOgilvie
Hi folks, I have a few installers that I am writing in WIX 3.7 I was just using: To handle upgrades (uninstall older version, install new version) I saw a blog on upgrades and they recommended doing the below, my question is, do I need to add all that?? NOT Installed AND N

Re: [WiX-users] Upgrades...

2013-04-02 Thread StevenOgilvie
] Sent: Tuesday, April 2, 2013 09:33 PM To: StevenOgilvie Subject: Re: Upgrades... That's just setting a bunch of properties. If you don't use the properties, you don't need all that. MajorUpgrade element is all you need (plus change Product/@Id and do not change Product/@U

Re: [WiX-users] Assigning property value

2013-04-09 Thread StevenOgilvie
Ravi, I believe the issue is that you haven’t assigned a default value for the radio buttons? Here is what I have and using for detecting which type of authentication I should use, Windows Authentication or SQL Server: That way the value of eith

Re: [WiX-users] Burn command line parameters

2013-04-16 Thread StevenOgilvie
I am trying the same thing and I don't understand your response :( I am doing MyBurnEXE.exe MYVAR=Something Then in the MSIPackage: In the burn/bootstrapper log file I see cmdline: 'MYVAR=Something blah blah...' so I know it is being picked up, But later on in burn/boot

[WiX-users] Show session.Message during silent install...

2013-04-24 Thread StevenOgilvie
Stupid question I know... I am using WIX 3.7 and using burn to bootstrap my MSI's Most of my MSI's have no need to show UI, so in Burn i am using: DisplayInternalUI="no" I have quite a few DTF Custom Actions, and I am using: Most are Message failures in try catch exception: catch (Exception ex)

[WiX-users] Condition for Upgrading...

2013-05-09 Thread StevenOgilvie
Hi folks, I am confused, I looked within the WIX userlist and Googled this but I seem to have mixed results... I want to run a custom action on an Upgrade only.. I currently have it as: NOT Installed AND SERVER_INSTALL="0" But in some cases it is being run on a fresh install :( I am using the

[WiX-users] HELP! How to turn off Logging with C# custom actions

2013-06-19 Thread StevenOgilvie
Hi folks, I have database passwords and web app pool username passwords showing up in my MSI log file I have verbose logging on: I have the properties set like this: I have my deferred custom action set like this: NOT Installed in my custom action: [CustomAction] public static A

Re: [WiX-users] variables in wsx files?

2012-09-06 Thread StevenOgilvie
As in previous email WIX has built in vars... \dev\myapp\bin\$(var.Configuration)\myapp.exe here is more info: http://wix.sourceforge.net/manual-wix3/votive_project_references.htm Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/variables-in

Re: [WiX-users] variables in wsx files?

2012-09-06 Thread StevenOgilvie
WIX comes with "built in" variables, you can use this: $(var.Configuration) which is set to debug or release :) Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/variables-in-wsx-files-tp7580356p7580357.html Sent from the wix-users mailing list

[WiX-users] how do you add to the ActionText table...

2012-09-10 Thread StevenOgilvie
Hello, I have a bunch of MergeModules that are installing files running custom actions etc... I would like to add ActionText so when the custom actions run it provides the user with info... How do I add to the ActionText table within WIX? thanks in advance, Steve -- View this message in

[WiX-users] problem using merge module dependency...

2012-09-10 Thread StevenOgilvie
Hi all, I have decided to use merge modules for all of the file set, since we have some files that are shared and will be easier to update/upgrade later on… I have 4 Services Merge modules that are installed to c:\program files\Company\Product\Services\ Service 1.. Service2.. Service3.. Service4.

[WiX-users] running a msi via a custom action...

2012-09-10 Thread StevenOgilvie
I am trying to run a MSI that I have installed onto the desktop (via a custom action) but I get a MSI error 1603… I have run the code via a cmd line after the install has finished and it works properly, I just don’t understand why it doesn’t work via the custom action?? CustomAction:

[WiX-users] database connection panel...

2012-09-11 Thread StevenOgilvie
Hi folks... Sigh... I am trying to create a database connection dialog with the following: Authentification (windows or SQL server) radio group depending on the selection, ask for where sql server is, what is sql database, username, password and have a test connection button I am trying to co

[WiX-users] Progress UI isn't working using burn on external MSI

2012-09-12 Thread StevenOgilvie
Hi, I am using WIX 3.6 (release) and VS2010... I am using burn to chain a bunch of MSI's, one of which is my main install (the others are pre req check msi's that are not visible) I want the UI of the main install to be present so the user can see what is what and select/deselect features etc...

Re: [WiX-users] Sources for WixUI_Mondo

2012-09-12 Thread StevenOgilvie
Goto the http://wix.codeplex.com/releases/view/93929 web site and download the source *wix36-sources.zip* Once you have it on your machine goto: Wix_Source\src\ext\UIExtension\wixlib and there is a file called: WixUI_Mondo.wxs Et viola :) Steve -- View this message in context: http://windo

Re: [WiX-users] Sources for WixUI_Mondo

2012-09-12 Thread StevenOgilvie
no worries (sorry for the double post :) Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Sources-for-WixUI-Mondo-tp7580455p7580460.html Sent from the wix-users mailing list archive at Nabble.com.

[WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-12 Thread StevenOgilvie
Hi I have an include file: and it has the following: I use it in a merge module like this: (I include the include file) BTW I need the " around the exe pathname or the custom action fails... it doesn't work, the logfile has this entry: MSI (s) (7

Re: [WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-13 Thread StevenOgilvie
Okay this is wierd... if I remove the custom action from the Merge Module and place it in my product.wxs the path is "created" properly by using This gets properly changed: [ProgramFilesFolder] BUT the same line as above in my merge module does NOT... Line from log file: PROPERTY CHANGE: Adding

Re: [WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-13 Thread StevenOgilvie
Hey Edwin, did as you said and no go... got this in the merge module: SetEALNBService.CA23A0DC_B2DE_4F2C_9E74_FD373F99E9D751 EALNBService.CA23A0DC_B2DE_4F2C_9E74_FD373F99E9D7 """[ProgramFilesFolder.CA23A0DC_B2DE_4F2C_9E74_FD373F99E9D7]\MyCompany\MyProduct\Services\EnterpriseAuditLogService\NSe

Re: [WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-13 Thread StevenOgilvie
thanks for the info, but SuppressModularization="yes" didn't work either :( -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/define-element-for-ProgramFilesFolder-not-working-in-include-file-tp7580463p7580488.html Sent from the wix-users mailing lis

Re: [WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-13 Thread StevenOgilvie
AHA!! worked like a charm!! thank you Edwin!! You da man :) Steve -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/define-element-for-ProgramFilesFolder-not-working-in-include-file-tp7580463p7580490.html Sent from the wix-users mailing list archiv

Re: [WiX-users] define element for ProgramFilesFolder not working in include file :(

2012-09-13 Thread StevenOgilvie
e: Fri, 14 Sep 2012 02:25:58 To: Subject: Re: define element for ProgramFilesFolder not working in include file :( Have you considered .wixlibs instead? They don't have any of these issues. On Thu, Sep 13, 2012 at 11:24 AM, StevenOgilvie <[hidden email] > wrote: > A

[WiX-users] Burn question (re user selection of installers to run)

2012-09-14 Thread StevenOgilvie
Hi, In my bundle I am checking for: .Net 4 SQL Server Express MS Sync Framework 2.1 SQL Server Compact and installing if not installed... Sigh... I need to breakup my current installer msi into 2 separate installers since one feature is Server side the other feature is Client side... For the sev

[WiX-users] MSI property not being read in via custom action?

2012-09-14 Thread StevenOgilvie
Hi, I have a property being set to 0 at start in product.wxs In a C# custom action I set it to 1: SetSessionProperty(session, "DATABASE_CREATE_SCHEMA", "1"); where SetSessionPropertyis: private static void SetSessionProperty(Microsoft.Deployment.WindowsInstaller.Session session, string propert

Re: [WiX-users] MSI property not being read in via custom action?

2012-09-14 Thread StevenOgilvie
forgot to add, in the first customaction that changes the value I can see in the msi logfile that the value has been changed: MSI (c) (40!F4) [17:11:05:685]: PROPERTY CHANGE: Modifying DATABASE_CREATE_SCHEMA property. Its current value is '0'. Its new value: '1'. however I can see that the getsess

Re: [WiX-users] Progress UI isn't working using burn on external MSI

2012-09-14 Thread StevenOgilvie
> MSI > > I think I heard someone mention it before but I do not believe there is a > bug tracking the behavior. > > On Wed, Sep 12, 2012 at 8:30 AM, StevenOgilvie <[hidden email] > > wrote: > > > Hi, > > > > I am using WIX 3.6 (release)

[WiX-users] creating database problem

2012-09-17 Thread StevenOgilvie
Hi, I have 3 sql scripts I need to run on our database (creating, overwrite) I have created a merge module that installs the scripts down... I create a user account: for SQL authentication (if required) I create two components, 1 for windows authentication the other for sql server authentication:

Re: [WiX-users] creating database problem

2012-09-17 Thread StevenOgilvie
oops the condition got wiped out: here it is for windows authentication: here it is for SQL Server authentication: -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/creating-database-problem-tp7580594p7580596.html Sent from the wix-users mailing

  1   2   >