Re: [WiX-users] SchedSecureObjectsRollback: Failed to store ACL rollback information with error 0x80070003 - continuing

2013-11-01 Thread Steven Ogilvie
-Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Friday, November 1, 2013 5:06 PM To: General discussion about the WiX toolset. Subject: [WiX-users] SchedSecureObjectsRollback: Failed to store ACL rollback information with error 0x80070003 - continuing Hi all

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

2013-10-31 Thread Steven Ogilvie
So weird... Was working before, stopped working... function name had 26 characters removed 7 characters now it works... Go figure... Steve -Original Message- From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] Sent: October-31-13 3:18 PM To: General discussion about the WiX

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

2013-10-31 Thread Steven Ogilvie
can handle entry points up to 72 characters in length before it'll throw a compile error. From: Steven Ogilvie steven.ogil...@titus.com Sent: Thursday, October 31, 2013 2:57 PM To: General discussion about the WiX toolset. wix-users

Re: [WiX-users] Burn Question

2013-10-30 Thread Steven Ogilvie
Depending on what your custom environment is like as well... some gov shops don't give out internet access... so downloading is not an option... -Original Message- From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com] Sent: October-30-13 2:38 PM To: General discussion about the WiX

Re: [WiX-users] Fwd: GUI for wix

2013-10-29 Thread Steven Ogilvie
I use Sharp Develop for creating my Dialogs in WIX: http://www.icsharpcode.net/OpenSource/SD/Default.aspx Course you could just use Visual Studio 2010/2012? Steve -Original Message- From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] Sent: October-29-13 12:26 PM To: General

Re: [WiX-users] Fwd: GUI for wix

2013-10-29 Thread Steven Ogilvie
Nope, it is all XML based, Here are a few websites that can help: http://wix.tramontana.co.hu/ http://wixtoolset.org/documentation/manual/v3/main%5Cwix_learning.html http://stackoverflow.com/questions/310418/good-resources-for-learning-how-to-create-msi-installers-from-wix these should help

Re: [WiX-users] Need help with the error A DLL required for this install to complete could not be run

2013-10-24 Thread Steven Ogilvie
Open up the MSI in ORCA and goto InstallExecuteSequence element. Sort the sequences in numeric order and see where your custom action is being called now, perhaps it has been moved before the removefiles sequence (which is sequence order 3500)? Steve -Original Message- From: Suryadeep

Re: [WiX-users] Setup Testing

2013-10-24 Thread Steven Ogilvie
I think the only way you could do this (if you can) Is once the app is installed run a custom action to call your application with the credentials entered in Step 3 (assign them to properties) depending on the return code handle the error code, and continue on. I am not really sure how you

[WiX-users] returned actual error code 1154 from custom action

2013-10-18 Thread Steven Ogilvie
Hi, I am calling a custom action on uninstall just to ensure that our 5 services are actually stopped before we try to remove them... However I am getting an error that confuses me since everything looks kosher... Anyone see any issues with what I am doing? Here is the error from the log

Re: [WiX-users] WiX Toolset installer (Wix36.exe, Wix37.exe)

2013-10-18 Thread Steven Ogilvie
Most likely because the installer is installing pre requisites and other tools, it is also using its burn technology. There are multiple MSI's being run. steve -Original Message- From: Jens Teutenberg [mailto:jens.teutenb...@t-online.de] Sent: October-18-13 8:30 AM To:

Re: [WiX-users] returned actual error code 1154 from custom action

2013-10-18 Thread Steven Ogilvie
-with-error-1154 Why are you not using the service control element to ensure the service is stopped? http://wixtoolset.org/documentation/manual/v3/xsd%5Cwix%5Cservicecontrol.html -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 18 October 2013 13:37 To: General

Re: [WiX-users] returned actual error code 1154 from custom action

2013-10-18 Thread Steven Ogilvie
work. It might be that the Services are slow to stop. Sometimes that code in a service can be less than optimal if it doesn't follow the protocol nicely, and if necessary explicitly say that it needs more time to shut down. Phil Wilson On Fri, Oct 18, 2013 at 6:46 AM, Steven Ogilvie

Re: [WiX-users] How to Make a Wix Installer for my Outlook Addin

2013-10-16 Thread Steven Ogilvie
Google how to create a simple WIX install http://wix.tramontana.co.hu/tutorial http://stackoverflow.com/questions/310418/good-resources-for-learning-how-to-create-msi-installers-from-wix http://www.codeproject.com/Tips/105638/A-quick-introduction-Create-an-MSI-installer-with Steve

Re: [WiX-users] Set Registry for both 32 and 64 bit

2013-10-09 Thread Steven Ogilvie
http://insomniacgeek.com/target-32bit-and-64bit-net-applications/ http://stackoverflow.com/questions/13147498/how-to-deploy-64-bit-and-a-32-bit-windows-installer-package-as-a-single-setup -Original Message- From: Chaitanya [mailto:chaita...@pointcross.com] Sent: October-09-13 5:40 AM

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Steven Ogilvie
Is it an animated GIF? If not why not use a BMP instead? I believe dialogs can only use BMP... Steve -Original Message- From: Tunney, Stephen [mailto:stephen.tun...@nuance.com] Sent: October-09-13 12:20 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Error code is 2858

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

2013-10-08 Thread Steven Ogilvie
Solved it... I created a customaction to populate a property with the powershell folder CustomAction Id=CA_Set_PowerShellx86_Path Directory=POWERSHELLX86_DIR Value=[POWERSHELLPATH_X86]/ CustomAction Id=CA_Set_PowerShellx64_Path Directory=POWERSHELLX64_DIR Value=[POWERSHELLPATH_X64]/ I use

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

2013-10-08 Thread Steven Ogilvie
it in the destination based on bitness. I'm not 100% certain, but is it not possible to have both X86 and X64 versions of powershell on the same system? -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Tuesday, October 08, 2013 12:15 PM To: General discussion for Windows

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

2013-10-08 Thread Steven Ogilvie
. With that, I would have a bare minimum config file and a component condition on it to only install if the file doesn't exist. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Tuesday, October 08, 2013 1:04 PM To: General discussion for Windows Installer XML toolset

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

2013-09-24 Thread Steven Ogilvie
Its annoying because the files will NEVER be installed on top of each other... So you install the files to subfolders, then use DuplicateFile table to put the right files into the proper folder? I looked at the DuplicateFile element but it didn't make any sense to me? Do you have an example?

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

2013-09-24 Thread Steven Ogilvie
Sigh 4 warnings x 6 merge modules :( Okay thanks all :) Steve -Original Message- From: Nicolás Alvarez [mailto:nicolas.alva...@gmail.com] Sent: September-24-13 10:41 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Merge Module question... On

Re: [WiX-users] install only on server 2012 and server 2008

2013-09-22 Thread Steven Ogilvie
Check out VersionNT and NTProductType (Google them to get the proper values for the two OS's you want) -Original Message- From: nkshirsagar [mailto:nkshirsa...@gmail.com] Sent: September-23-13 12:05 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] install only on server

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-09-18 Thread Steven Ogilvie
window in burn bootstrapper/installer That's another feature I'm hoping to implement: Burn should support 'Modifying' the installation, displaying the options page during maintenance. -- Bruce Sent from my iPhone On 16 Sep 2013, at 15:59, Steven Ogilvie steven.ogil...@titus.com wrote: Did I

Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can it be UI-less?

2013-09-18 Thread Steven Ogilvie
Alain, One thing you have to remember, this is a FREE product. It is not a full time job for the main developers, they do this on their spare time and other developers add stuff on their spare time as well. Burn/Boostrapper was added in 3.6 (or was it 3.5) as add on tool for WIX and is an

Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can it be UI-less?

2013-09-18 Thread Steven Ogilvie
Alain, You can't expect someone to hold your hand! You have to dive in, figure out the code, and try to add some stuff to it, trial and error, and by doing this you are gaining knowledge on how the code works... As Wesley stated you can change minor things by the theme wxl/xml files But what

Re: [WiX-users] ** SPAM ** [SPAM] Re: [SPAM] Re: Bootstrapper -- Can it be UI-less?

2013-09-18 Thread Steven Ogilvie
Awesome Rob, I logged that Internal MSI UI and the progress not moving bug, glad its fixed I will look forward to 3.8 :) -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: September-18-13 4:41 PM To: General discussion for Windows Installer XML toolset. Subject:

Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can it be UI-less?

2013-09-18 Thread Steven Ogilvie
I was able to add checkboxes/radiobuttons on Welcome Page, then fool WixExtendedBA to think the Options button was Next and the options page to be the rich text EULA page, so I have 2 pages now... select the product to install, click next agree to the EULA and click Install, most of that was

Re: [WiX-users] [SPAM] Re: Bootstrapper -- Can it be UI-less?

2013-09-18 Thread Steven Ogilvie
://neilsleightholm.blogspot.co.uk/2008/08/customised-uis-for-wix.html -Original Message- From: Alain Forget [mailto:afor...@cmu.edu] Sent: September-18-13 5:00 PM To: Steven Ogilvie; 'General discussion for Windows Installer XML toolset.' Subject: RE: [WiX-users] [SPAM] Re: Bootstrapper -- Can

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-09-16 Thread Steven Ogilvie
/installer If you like to post diff on the code plea site I'll add it to the extended BA. Neil On 30 Aug 2013, at 14:48, Steven Ogilvie steven.ogil...@titus.com wrote: No sorry I am not using 3.8 I am using 3.7 with the Extended BA from Neil -Original Message- From: Bruce Cran

Re: [WiX-users] Custom Action, feature condition and silent install

2013-09-12 Thread Steven Ogilvie
Have you tried After CostFinalize -Original Message- From: Ralph [mailto:ralph.gu...@racelogic.co.uk] Sent: September-12-13 10:17 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Custom Action, feature condition and silent install I have a custom action which detects the

Re: [WiX-users] Custom Action, feature condition and silent install

2013-09-12 Thread Steven Ogilvie
What does your log file say? -Original Message- From: Ralph [mailto:ralph.gu...@racelogic.co.uk] Sent: September-12-13 10:38 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Custom Action, feature condition and silent install Steven Ogilvie wrote Have you tried After

Re: [WiX-users] Custom Action, feature condition and silent install

2013-09-12 Thread Steven Ogilvie
: September-12-13 10:38 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Custom Action, feature condition and silent install Steven Ogilvie wrote Have you tried After CostFinalize Unfortunately it doesn't work either... -- View this message in context: http://windows-installer-xml

Re: [WiX-users] Custom Action, feature condition and silent install

2013-09-12 Thread Steven Ogilvie
Okay lets get more info :) Are you running this in a merge module or within the product.wxs file? What does your code for the customaction look like please? So the custom action and the installexecutesequence as well Steve -Original Message- From: Ralph

Re: [WiX-users] help! How do I launch a file upon install ?

2013-09-04 Thread Steven Ogilvie
If you follow the example on that web url it should work for you... You can just add the: !-- Step 2: Add UI to your installer / Step 4: Trigger the custom action -- UI UIRef Id=WixUI_Minimal / Publish Dialog=ExitDialog Control=Finish Event=DoAction

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-30 Thread Steven Ogilvie
bootstrapper/installer Do you have a diff (e.g. using 'git diff') you can attach? -- Bruce Sent from my iPhone On 28 Aug 2013, at 18:29, Steven Ogilvie steven.ogil...@titus.com wrote: Here is the code from BA Theme wxl file String Id=SuccessHeaderSetup Successful/String String Id

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-28 Thread Steven Ogilvie
Yes exactly BA is using the same property for Setup/Uninstall for the success/failure string I fixed this by changing the code in BA and adding a few extra string properties in the theme wxl file String Id=SuccessHeaderSetup Successful/String String Id=SuccessSetupHeaderSetup

Re: [WiX-users] Setting a value XmlConfig

2013-08-28 Thread Steven Ogilvie
I am using a custom action for that (I set mine to false) however after our product was released I saw this post: http://stackoverflow.com/questions/11687870/wix-installer-always-changes-apppool-to-enable-32bit-app below is my custom action just in case... [CustomAction] public static

Re: [WiX-users] Setting a value XmlConfig

2013-08-28 Thread Steven Ogilvie
to try a different approach. Just a quick question as appcmd is not available on iis 6 do you use another method or do you not support it? Thanks Natalie -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 28 August 2013 14:56 To: General discussion for Windows

Re: [WiX-users] Setting a value XmlConfig

2013-08-28 Thread Steven Ogilvie
/ CustomAction Id=Enable32BitAppPool BinaryKey=WixCA DllEntry=CAQuietExec Execute=deferred Return=check Impersonate=no/ -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 28 August 2013 14:56 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-28 Thread Steven Ogilvie
To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Add text to final window in burn bootstrapper/installer Could you sent a pull request to integrate this change upstream please? -- Bruce Cran Sent from my iPhone On 28 Aug 2013, at 14:28, Steven

Re: [WiX-users] Add text to final window in burn bootstrapper/installer

2013-08-28 Thread Steven Ogilvie
{ ThemeControlEnable(m_pTheme, WIXSTDBA_CONTROL_FAILURE_HEADER, TRUE); } That should be it :) Cheers, Steve -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: August-28-13 1:14 PM To: General

Re: [WiX-users] Theme element

2013-08-22 Thread Steven Ogilvie
You mean like this: WixVariable Id=WixExtbaThemeXml Value=$(var.SolutionDir)Include\HyperlinkTheme.xml / WixVariable Id=WixExtbaThemeWxl Value=$(var.SolutionDir)Include\HyperlinkTheme_ClientSuite.wxl / -Original Message- From: yugolancer [mailto:thewebo...@yahoo.com] Sent: August-22-13

Re: [WiX-users] Embedded UI Dependent files

2013-08-21 Thread Steven Ogilvie
Is this for Burn, wouldn't you use Payload i.e. Payload SourceFile=pathto some file/ Steve -Original Message- From: Phyx [mailto:loneti...@gmail.com] Sent: August-21-13 11:06 AM To: wix-users@lists.sourceforge.net Cc: loneti...@gmail.com Subject: [WiX-users] Embedded UI Dependent files

Re: [WiX-users] Basic MSI without UI

2013-08-20 Thread Steven Ogilvie
Did you try running the MSI via the command line MSIEXEC /qn? Windows (r) Installer. V 5.0.7601.17514 msiexec /Option Required Parameter [Optional Parameter] Install Options /package | /i Product.msi Installs or configures a product

Re: [WiX-users] Basic MSI without UI

2013-08-20 Thread Steven Ogilvie
This was asked before, here is an answer: In reply to this post by Pierson Lee (Volt) Pierson Lee (Volt) wrote: Is there a property within the Wix I can set conditionally (dependent upon a registry key) whether or not to display a UI? No. UILevel is set by MSI to indicate how the *user* chose to

Re: [WiX-users] Validate browser

2013-08-09 Thread Steven Ogilvie
What does the burn runtime log file have ? -Original Message- From: Christopher M. Bunn [mailto:cmb...@torchmarkcorp.com] Sent: August-09-13 10:18 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Validate browser Does anyone see anything wrong with the following code? I'm

Re: [WiX-users] Validate browser

2013-08-09 Thread Steven Ogilvie
. Subject: Re: [WiX-users] Validate browser Where is the burn runtime log file? I'm not seeing a log file anywhere -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Friday, August 09, 2013 9:24 AM To: General discussion for Windows Installer XML toolset. Subject

Re: [WiX-users] Validate browser

2013-08-09 Thread Steven Ogilvie
' to value '6.0.2900.5512' 03E0:05EC][2013-08-09T10:53:26]i052: Condition 'IEVersion = 5' evaluates to false. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Friday, August 09, 2013 10:49 AM To: General discussion for Windows Installer XML toolset. Subject: Re

Re: [WiX-users] Msiexec command prompt when running setup

2013-08-08 Thread Steven Ogilvie
In a dos box (cmd prompt) you type msiexec.exe /I Myinstaller.msi you can add other options like logging, no reboot etc.. -Original Message- From: Phil Wilson [mailto:phil.wil...@mvps.org] Sent: August-08-13 1:46 PM To: 'General discussion for Windows Installer XML toolset.' Subject:

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

2013-08-08 Thread Steven Ogilvie
Aw nuts :( I was hoping that was something in Burn that I could use... Hey on the bright side the extended BA will be in 3.8 :) Steve -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: August-08-13 1:41 PM To: wix-users@lists.sourceforge.net Subject: Re:

Re: [WiX-users] BURN - Check browser version and install if not the minimum browser

2013-08-08 Thread Steven Ogilvie
Get the version number of the browser by using the util:RegistrySearch element (HKLM\SOFTWARE\Microsoft\Internet Explorer get the value for the key Version, then based on the result from that use an installcondition for installing the IE8 InstallCondition=IEVersion 8.1 or whatever is the

Re: [WiX-users] WixStdBA Command line parameters

2013-08-07 Thread Steven Ogilvie
Yup pretty easy i.e. MyBundle.exe APROPERTY=DIFFERENTVALUE Bundle.wxs Variable Name= APROPERTY Type=string bal:Overridable=yes Value=DEFAULTVALUE/ Then in MSIPackage element: MsiProperty Name= APROPERTY Value=[ APROPERTY]/ In your MSI Property Id= APROPERTY Secure=yes/ If you don't use

Re: [WiX-users] Detect Internet Explorer Browser Version [P]

2013-08-06 Thread Steven Ogilvie
/clk?id=48897031iu=/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 August-06-13 5:56:41 PM. The above

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

2013-07-31 Thread Steven Ogilvie
bit msi. (another) Dave -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 30 July 2013 16:54 To: David Connet; General discussion forWindows Installer XML toolset. Subject: Re: [WiX-users] Need help, how to put a condition on a merge module

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

2013-07-31 Thread Steven Ogilvie
when you actually need to decide at compile time. Dave W. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 31 July 2013 13:55 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Need help, how to put a condition on a merge module

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

2013-07-31 Thread Steven Ogilvie
was does this (or something similar) not work ? Along the lines of ?if $(var.Platform)=x64 ? MergeRef Id=ServicesMergeModule/ ?else ? MergeRef Id=ServicesMergeModule_x64/ ?endif ? -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 31 July 2013 17:26

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

2013-07-31 Thread Steven Ogilvie
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: Wednesday, July 31, 2013 12:50 PM To: General discussion

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

2013-07-31 Thread Steven Ogilvie
files identical, just that they are sourced from a different lib folder? -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Wednesday, July 31, 2013 1:17 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Need help, how

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

2013-07-31 Thread Steven Ogilvie
on the same PC it should not be a problem. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Wednesday, July 31, 2013 2:09 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Need help, how to put a condition on a merge module

Re: [WiX-users] Having trouble modifying a Built-in WixUI dialog set [P]

2013-07-31 Thread Steven Ogilvie
 by Steven Ogilvie on July-31-13 4:27:28 PM. The above classification labels were added to the message by TITUS Message Classification. For more information visit www.titus.com.   -- Get your SQL database under version

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

2013-07-30 Thread Steven Ogilvie
___ 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-30-13 10:16:47 AM. The above classification labels were added to the message

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

2013-07-30 Thread Steven Ogilvie
a condition on a merge module in Product.wxs [P] Assign them to a feature and condition the feature. Dave - Original Message - From: Steven Ogilvie steven.ogil...@titus.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Cc: Sent: Tuesday, July

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

2013-07-30 Thread Steven Ogilvie
. Dave - Original Message - From: Steven Ogilvie steven.ogil...@titus.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Cc: Sent: Tuesday, July 30, 2013 7:16 AM Subject: Re: [WiX-users] Need help, how to put a condition on a merge module

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

2013-07-30 Thread Steven Ogilvie
and a compilation setting. I have 32 and 64 bit components all up my build tree just because one package needs a 32 and a 64 bit msi. (another) Dave -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 30 July 2013 16:54 To: David Connet; General discussion forWindows

Re: [WiX-users] WiX 3.6: SelectDbDlg [P]

2013-07-26 Thread Steven Ogilvie
resolve this issue? Thanks a lot! Miaohsi -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Thursday, July 25, 2013 4:59 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.6: SelectDbDlg [P] Classification: Public Did

Re: [WiX-users] Custom action [P]

2013-07-25 Thread Steven Ogilvie
___ 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-25-13 9:08:18 AM. The above classification labels were added to the message by TITUS Message Classification

Re: [WiX-users] Custom action [P]

2013-07-25 Thread Steven Ogilvie
: You should NOT call any custom actions **that modify machine state Before InstallInitialize or** After InstallFinalize On Thu, Jul 25, 2013 at 6:08 AM, Steven Ogilvie steven.ogil...@titus.comwrote: Classification: Public You should NOT call any custom actions After InstallFinalize

Re: [WiX-users] WiX 3.6: SelectDbDlg [P]

2013-07-25 Thread Steven Ogilvie
=/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-25-13 7:59:05 PM. The above classification labels

Re: [WiX-users] Installing MSMQ as dependency [P]

2013-07-24 Thread Steven Ogilvie
=/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-24-13 9:09:47 AM. The above classification labels were

Re: [WiX-users] Installing MSMQ as dependency [P]

2013-07-24 Thread Steven Ogilvie
to Wix, as this is the first time I'm making an installer, where exactly do you write that code? I presume it's not straight into the xml, but so far I only have written XML... Best regards, José On Wed, Jul 24, 2013 at 2:09 PM, Steven Ogilvie steven.ogil...@titus.comwrote: Classification: Public

Re: [WiX-users] prompt for administrator account during major upgrade [P]

2013-07-24 Thread Steven Ogilvie
-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users   This message has been marked as Public by Steven Ogilvie on July-24-13 11:29:05 AM. The above classification labels were added to the message by TITUS Message Classification. For more information visit

Re: [WiX-users] RemotePayload causes error LGHT0103: The system cannot find the file '' with type ''. [P]

2013-07-24 Thread Steven Ogilvie
://lists.sourceforge.net/lists/listinfo/wix-users   This message has been marked as Public by Steven Ogilvie on July-24-13 11:32:19 AM. The above classification labels were added to the message by TITUS Message Classification. For more information visit www.titus.com

Re: [WiX-users] prompt for administrator account during major upgrade [P]

2013-07-24 Thread Steven Ogilvie
for administrator account during major upgrade [P] I do not have any custom actions in my install beyond what is included in wix. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Wednesday, July 24, 2013 10:29 AM To: General discussion for Windows Installer XML toolset

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

2013-07-23 Thread Steven Ogilvie
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

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

2013-07-23 Thread Steven Ogilvie
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

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

2013-07-23 Thread Steven Ogilvie
://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

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

2013-07-23 Thread Steven Ogilvie
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

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

2013-07-22 Thread Steven Ogilvie
not seem to work. Mark Freedman JHU/APL 17-N568 443.778.2647 mark.freed...@jhuapl.edu -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Friday, July 19, 2013 1:43 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users

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

2013-07-22 Thread Steven Ogilvie
=OperatorStationInstaller SourceFile=$(var.OperatorStationInstaller.TargetPath) Compressed=no MsiProperty Name=SETLOCALDB Value=[SETLOCALDB] / /MsiPackage Property Id=SETLOCALDB Secure=yes/ Mark Freedman -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent

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

2013-07-22 Thread Steven Ogilvie
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

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

2013-07-22 Thread Steven Ogilvie
the Custom Action for setting the property is firing. I see you are doing it after InstallValidate, but I am doing it after InstallFiles. 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

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

2013-07-22 Thread Steven Ogilvie
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

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

2013-07-22 Thread Steven Ogilvie
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

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

2013-07-22 Thread Steven Ogilvie
/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 9:49 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] passing command args to MSI from bundle [P

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

2013-07-22 Thread Steven Ogilvie
- 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

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

2013-07-22 Thread Steven Ogilvie
...@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

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

2013-07-19 Thread Steven Ogilvie
=/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-19-13 10:07:29 AM. The above classification labels were

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

2013-07-19 Thread Steven Ogilvie
what I want to do is to read the MSI property and store it in a CustomActionData property to be read by a custom action, but does not seem to work. Mark Freedman JHU/APL 17-N568 443.778.2647 mark.freed...@jhuapl.edu -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com

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

2013-07-19 Thread Steven Ogilvie
'/ Mark Freedman -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Friday, July 19, 2013 10:08 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] passing command args to MSI from bundle [P] Classification: Public I do the same

Re: [WiX-users] Convert from MSI to EXE [P]

2013-07-18 Thread Steven Ogilvie
 by Steven Ogilvie on July-18-13 1:59:37 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

Re: [WiX-users] Convert from MSI to EXE [P]

2013-07-18 Thread Steven Ogilvie
steve. not clear what you're saying.. Let me reframe what I want.. When I compile my project I want .exe to be generated. I do not want .msi file to be generated. Is it possible using WIX? -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Thursday, July 18

Re: [WiX-users] C# custom action to grant builtin user the installation folder full control [P]

2013-07-16 Thread Steven Ogilvie
/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-16-13 2:06:43 PM. The above

Re: [WiX-users] Newer version of the product is already installed error [P]

2013-07-16 Thread Steven Ogilvie
___ 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-16-13 4:58:14 PM. The above classification labels were added to the message

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread Steven Ogilvie
Sigh, I am confused... When I was using InstallShield (for many years) I was told to always use Merge Modules, easier for upgrading, and easier for grouping features. I have a Server MSI and a Services MSI which is bundled in burn so the bootstrapper can take care of the pre reqs etc... In

Re: [WiX-users] Resolve Light 1056 Warning

2013-07-11 Thread Steven Ogilvie
To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Resolve Light 1056 Warning Steve, basically, yes: http://robmensching.com/blog/posts/2008/10/10/what-are-.wixlibs-and-why-would-you-use-them On Thu, Jul 11, 2013 at 5:48 AM, Steven Ogilvie steven.ogil...@titus.comwrote

Re: [WiX-users] Windows updates [P]

2013-07-11 Thread Steven Ogilvie
as Public by Steven Ogilvie on July-11-13 1:01:06 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

Re: [WiX-users] Target directory issue with windows xp/ windows 7 [P]

2013-06-23 Thread Steven Ogilvie
by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev ___ 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 June

Re: [WiX-users] Suppress options in bundle [P]

2013-06-14 Thread Steven Ogilvie
, Oxfordshire. OX14 4RQ. UK. VAT No. 821339546. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 13 June 2013 14:51 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Suppress options in bundle [P] Classification: Public Dave Go back

Re: [WiX-users] App-pool creation [P]

2013-06-14 Thread Steven Ogilvie
://p.sf.net/sfu/windows-dev2dev ___ 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 June-14-13 4:52:40 PM. The above classification

Re: [WiX-users] Suppress options in bundle [P]

2013-06-13 Thread Steven Ogilvie
Classification: Public Try this: BootstrapperApplicationRef Id=WixExtendedBootstrapperApplication.HyperlinkLicense bal:WixExtendedBootstrapperApplication SuppressRepair=yes SuppressOptionsUI=yes LicenseUrl= /bal:WixExtendedBootstrapperApplication

Re: [WiX-users] Suppress options in bundle [P]

2013-06-13 Thread Steven Ogilvie
is registered in England Wales, registration No. 4452522, with registered offices at 67 Innovation Drive, Milton Park, Abingdon, Oxfordshire. OX14 4RQ. UK. VAT No. 821339546. -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: 13 June 2013 13:30 To: General discussion

<    1   2   3   4   >