[WiX-users] Problems launching application after install as non-elevated

2010-04-08 Thread Simon
loying our installers. Ideal Situation: -- Ideally we set the Self-Extracter, Bootstrapper and MSI to RunAsAdministrator in elevated mode, but the application is then launched in non-elevated mode. Does anyone know how to achieve this? Thank you in advance for you help! Rega

Re: [WiX-users] Problems launching application after install as non-elevated

2010-04-08 Thread Simon
Hi, Sorry to clarify - in my previous post, when I mentioned "RunAsAdministrator" I meant manifested as "requiresAdministrator" . Thanks, Simon On Thu, Apr 8, 2010 at 11:52 AM, Simon wrote: > Hi, > > I need some help in launching our Application correctly onc

[WiX-users] Problems during upgrade

2010-04-09 Thread Simon
idea what could be causing this? Thanks in advance for your help. Simon -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications fo

Re: [WiX-users] Launching two Processes after a WiX installation

2010-04-09 Thread Simon
Hi Bob, Thank you for the advice - I will do that. Thanks, Simon On Thu, Apr 8, 2010 at 11:11 PM, Bob Arnson wrote: > On 4/8/2010 11:08 AM, Xmun wrote: > > Is there a way to launch two applications? > > > WiX provides the custom actions to launch one; if you want two, yo

[WiX-users] Bootstrapper multiple MSI’s don’t rollback to a working installed state

2013-06-26 Thread Simon Fogliato
I’m really stumped on a failure rollback scenario with multiple MSI’s bundled in a WiX bootstrapper. Consider the following WiX bundle chain: a.msi creates a few files in C:\Program Files (x86)\a b.msi creates a few files in C:\Program Files (x86)\b [Step 1]: A computer has a co

Re: [WiX-users] Bootstrapper multiple MSI’s don’t rollback to a working installed state

2013-06-26 Thread Simon Fogliato
I'm using the standard WiX Toolset for everything so yes I'm using WiX Standard Bootstrapper Application (WiXStdBA). The original media is available and cached by default because my workaround is to manually go into the Control Panel, Programs and Features and repair the entire installed versio

Re: [WiX-users] Bootstrapper multiple MSI’s don’t rollback to a working installed state

2013-06-26 Thread Simon Fogliato
In the context of the bootstrapper chain rollback event the individual MSI MajorUpgrade Schedule element is irrelevant since this only comes into play when rolling back 1 MSI. In my case a.msi has been upgraded successfully therefore the old existing product is removed. Then when b.msi fails a.m

Re: [WiX-users] Bootstrapper multiple MSI’s don’t rollback to a working installed state

2013-06-26 Thread Simon Fogliato
You are correct this is how it is currently working in WiX 3.7 and this is my problem. The MSI that fails (b.msi) does rollback correctly, my issue is that the installed files of a.msi are lost until I manually repair the previous bootstrapper version from add/remove programs. A RollbackBoundar

[WiX-users] How to remove custom application with malformed uninstall package

2013-08-28 Thread Simon Gerhold
ed. Contact your support personnel or package vendor.". The same exception occurs if I try to install/repair/change my application... Is there any possibility to uninstall my application without the last (faulty) custom action? Or to 'overinstall' it somehow? Simon Simon Gerhold,

Re: [WiX-users] How to remove custom application with malformed uninstall package

2013-08-28 Thread Simon Gerhold
bove, > though it's supposed to do a more intelligent job. > > Thirdly, you can find the appropriate MSI in the c:\windows\installer > cache, remove the offending action from the sequence using orca.exe > and then try to uninstall it again. > > Lastly, I know some people

Re: [WiX-users] How to remove custom application with malformed uninstall package

2013-08-28 Thread Simon Gerhold
Thanks, good to know :) Simon Gerhold, razvojni inženir / Development Engineer Cetis d.d., Čopova 24, 3000 Celje, Slovenia - EU, T: +386 3 4278 785, F: +386 3 4278 651, www.cetis.si -Original Message- From: Wheeler, Blaine (DSHS/DCS) [mailto:bwhee...@dshs.wa.gov] Sent: Wednesday

[WiX-users] Burn - Extracting packages in managed bootstrapper

2013-11-04 Thread Simon Gustavsson
extract it? Or would this Be against the license agreement or something as we would then have to ship the dll with our bootstrapper? Thanks in advance :) Simon -- Android is increasing in popularity, but the open devel

Re: [WiX-users] Burn - Extracting packages in managed bootstrapper

2013-11-06 Thread Simon Gustavsson
Correct me if I'm wrong, but doesn't -layout only download external packages? I might have been unclear, what I want to do is extract packages that have been embedded Within the bootstrapper. We are doing this so that customers would have the option of using the MSIs directly for deployment Shou

Re: [WiX-users] Burn - Extracting packages in managed bootstrapper

2013-11-07 Thread Simon Gustavsson
Righto, in that case only one of my initial questions remain. Am I clear to reference and use the public APIs in wix.dll (& winterop.dll) to implement this Functionality in our bootstrapper, and ship said files with our bootstrapper, or would this break the license agreement in some way? S

[WiX-users] Burn - WACK, unresolvable warnings?

2013-11-07 Thread Simon Gustavsson
se version entries (although it does write (string)BundleVersion). I understand there might be some debate as to what sort of InstallLocation Burn should write, being a chainer and all. So I guess I'll just have to live with that warning. However, to me, it looks like the version warnings are

[WiX-users] Uninstalling with application running

2014-01-09 Thread Simon Gustavsson
gh with a "File in use" error message, as I expect it to. Anyone know what's going on here? Thanks Simon -- CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Choo

Re: [WiX-users] Uninstalling with application running

2014-01-09 Thread Simon Gustavsson
Interesting, thank you for that prompt reply. Is there a setting to modify this behaviour? Or am I going to have to modify our product? To clarify, I do not want to be able to uninstall with the application running. Simon -Original Message- From: Blair Murri [mailto:os...@live.com

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

2011-02-23 Thread Simon Zinkevicius
} } I then created WIX bootstrapper project and updated its Bundle.wxs file to use my BootstrapperApplication by chaging the BootstrapperApplicationRef tag to: Everything builds just fine but when I run my bootstrapper I dont get my message box. I'm just wonder what steps I might

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

2011-02-23 Thread Simon Zinkevicius
I also added the following line the the AssemblyInfo.cs in the bootstrapper Application library but it still will not run. [assembly: BootstrapperApplication(typeof(TestBA))] -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Trouble-implementing-a-Bo

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

2011-02-24 Thread Simon Zinkevicius
Im get a "Error 0x8007007f: Failed to get BootstrapperApplicationCreate entry-point" error in the log. Do I need to defne a "BootstrapperApplicationCreate" function in my BA library? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Trouble-implement

Re: [WiX-users] Trouble implementing a

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

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

2011-02-24 Thread Simon Zinkevicius
Everything is now up and running. My problem was that I was not including my BA config file in the BootstrapperApplication payload. I added the lines below into my Bundle.wxs and it is all working now. Thanks for the help guys! Simon -- View this message in context: http://windows

[WiX-users] How to read binary file content using c# custom action???

2011-03-04 Thread Simon Chromow
Hi wix-users, Does anybody know, how to read content from a specific binary file using a c# custom-action? Thanks for your efforts Simon -- What You Don't Know About Data Connectivity CAN Hurt You This

Re: [WiX-users] How to read binary file content using c#custom action???

2011-03-04 Thread Simon Chromow
allows. Does this answer your question? Dan -Original Message- From: Simon Chromow [mailto:simon.chro...@bewotec.de] Sent: Friday, March 04, 2011 1:05 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to read binary file content using c# custom action??? Hi wix-users, D

Re: [WiX-users] C# Custom Action questions

2011-03-09 Thread Simon Dahlbacka
You shouldn't return failure if the credentials are incorrect, if you do so you will get this error. "been there, done that... " On Mar 10, 2011 6:34 AM, "Kevin Burton" wrote: > I read that. Which of the four rules is this violating? > > I made the warning go away by making the C# CA 'immediate'

[WiX-users] Remove/Add Features on Change does not work

2011-03-25 Thread Simon Chromow
e2 FeatureInstance3 FeatureInstance4 REMOVE=" FeatureInstance3" And also adding a feature on change does not work with: ADDLOCAL="FeatureInstance5" Am I missing a Setting, Property ??

[WiX-users] Suppress Warning LGHT1008

2011-05-13 Thread Simon Chromow
Hello everybody, is it possible to suppress the warning LGHT1008? Thanks for your efforts Simon -- Achieve unprecedented app performance and reliability What every C/C++ and Fortran developer should know. Learn how Intel

[WiX-users] RemoveExistingProducts, rebooting, and custom actions writing RunOnceEx

2011-10-10 Thread Simon Hoffmann
Finalize. Conversely, if I schedule the CA between InstallInitialize and InstallFinalize, the reboot check might not be meaningful because RemoveExistingProducts has not run yet. I'd be extremely grateful for any ideas or suggestions. Best, Simon -

Re: [WiX-users] RemoveExistingProducts, rebooting, and custom actions writing RunOnceEx

2011-10-11 Thread Simon Hoffmann
best served by using a bootstrapper/chainer. > > On Mon, Oct 10, 2011 at 12:19 AM, Simon Hoffmann < > vol714poursyd...@googlemail.com> wrote: > >> Hi there, >> >> I'm new to this list and am writing because I feel like im a Catch-22 >> situation. >&g

[WiX-users] Incomplete uninstall from ARP; works from full UI; possibly UAC-related

2011-11-10 Thread Simon Hoffmann
I have a problem with uninstalling a WiX 3.5-authored setup. On Windows 7: - Uninstall product via the "Programs and Features" dialog via select the "Uninstall" option from either the toolbar above the list or from the context menu. Observations: - Uninstall runs with a reduced Windows Installer

Re: [WiX-users] Incomplete uninstall from ARP; works from full UI; possibly UAC-related

2011-11-10 Thread Simon Hoffmann
tall. It should explain why it not > removing the ARP entry even if it's not obvious. > > ARP uninstall will always run a basic UI, this is expected. > > > > -Original Message- > From: Simon Hoffmann [mailto:vol714poursyd...@googlemail.com] > Sent

[WiX-users] Bootstrap SQL Server 2005

2011-11-14 Thread Simon Chromow
ent I use looks like this: Thanks for your efforts. Simon Chromow -- RSA(R) Conference 2012 Save $700 by Nov 18 Register now http://p.sf.net/sfu/rsa-sfdev2dev1 ___ WiX-use

Re: [WiX-users] Incomplete uninstall from ARP; works from full UI; possibly UAC-related

2011-12-05 Thread Simon Hoffmann
alysing > a problem. > > If you finding them hard to follow you could try using the MSI log file > viewer (C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\WiLogUtl.exe) > from the sdk, it can sometimes be helpful. > > -----Original Message- > From: Simon Hoffmann [mai

[WiX-users] ServiceInstall Wix 2 VB.NET

2009-12-15 Thread Simon Topley
art. Verify that you have sufficient privileges to start system services. The system event log says that it is not a valid Win32 application, has anyone come across this before? Simon Disclaimer: This electronic communication and its attachments may contain confidential, proprietary and/o

Re: [WiX-users] ServiceInstall Wix 2 VB.NET

2009-12-15 Thread Simon Topley
Hello again all, It turns out that I didn't have the .exe set as the keypath for the component. drat! Simon -Original Message- From: Simon Topley Sent: 15 December 2009 14:43 To: wix-users@lists.sourceforge.net Subject: ServiceInstall Wix 2 VB.NET Hello all, I've been

Re: [WiX-users] ICE61: Upgrade.VersionMax format is wrong

2010-01-14 Thread Simon Dahlbacka
just a hunch, can it be that the ICE is (wrongly) using a signed 16-number for the third field? On Fri, Jan 15, 2010 at 5:22 AM, Castro, Edwin G. (Hillsboro) < edwin.cas...@fiserv.com> wrote: > I'm getting the following error from light: > > error LGHT0204: ICE61: Upgrade.VersionMax 3.3.34567.0 f

Re: [WiX-users] How to assign a default value to preprocessor properties

2010-01-18 Thread Simon Dahlbacka
> The problem is that when I build the project in Visual Studio those > properties get an empty value. I want to give these properties a default > value so that I will be able to build the WIX project from Visual Studio and > not just from the command line using msbuild. > > Is there any way to ass

Re: [WiX-users] (maybe OT?) Add my file checking algorithm to WiX build process?

2010-01-20 Thread Simon Dahlbacka
ead up on creating custom tasks for msbuild (not that it's hard though) regards, Simon -- Throughout its 18-year history, RSA Conference consistently attracts the world's best and brightest in the field, creating

[WiX-users] Permanent Merge Modules

2010-02-12 Thread Simon Jackson
want, but I can't see a way of applying it to the merge modules. How should I go about doing this? Thanks Simon -- SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing

Re: [WiX-users] Permanent Merge Modules

2010-02-12 Thread Simon Jackson
to install. Sorry if I've misread that, and sorry for not mentioning it in the previous email! Simon -Original Message- From: Pally Sandher [mailto:pally.sand...@iesve.com] Sent: 12 February 2010 16:29 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-u

Re: [WiX-users] Permanent Merge Modules

2010-02-12 Thread Simon Jackson
installing and reinstalling the merge modules (since the ref count goes to 0, then back to 1). This adds around 8 minutes to the upgrade process, which I'd rather avoid. I was hoping I could stop the uninstall happening, and then our upgrade would be fast again. Simon __

Re: [WiX-users] Registry on 64bit XP vs Win7

2010-04-30 Thread Simon Dahlbacka
It is the correct path, as long as your executable is running as 32bit on a 64bit system. Registry redirection is at play (http://msdn.microsoft.com/en-us/library/aa384232%28VS.85%29.aspx) On Fri, Apr 30, 2010 at 12:39 PM, Yu, Brian wrote: > Hi there > > > > I found by testing that in 64 bit XP,

Re: [WiX-users] Windows 7 Custom Action Registry problem

2010-07-01 Thread Simon Dahlbacka
that seems to indicate that your custom action is running as 32-bit, if you run them as 64-bit things should just work.. On Thu, Jul 1, 2010 at 10:09 PM, Kurt Jensen wrote: > That's it! > > So far I cannot find an equivalent in .NET but at least now I can track down > the communication breakdown

[WiX-users] Shared resource versioning

2012-12-12 Thread Simon Detheridge
bably solve my problem but neither of these things seem possible. Thanks, Simon -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile devices and provide instant support Imp

[WiX-users] Custom Wix Burn bootstrapper doesn't detect MSI install state

2013-01-09 Thread Simon Gillbee
y setup.msi. I suspect that I'm missing a step to determine whether I should put my wizard into maintenance mode vs. install mode. -Simon P.S. Also posted to StackOverflow: http://stackoverflow.com/questions/14238488/custom-wix-burn-bootstrapper-doesnt-dete

[WiX-users] Bundles, shared packages, reference counting and major upgrades

2013-01-28 Thread Simon Detheridge
e: Contrived example, the bundles don't have their own extra packages, just the shared one) Product B uninstall: [1E0C:2AD8][2013-01-28T10:51:56]i001: Burn v3.7.1224.0, Windows v6.1 (Build 7601: Service Pack 1), path: C:\ProgramData\Package Cache\{470f1494-5284-4a23-b775-77f0e222d46f}\produc

Re: [WiX-users] Bundles, shared packages, reference counting and major upgrades

2013-01-29 Thread Simon Detheridge
rsion. Am I missing something? Thanks, Simon - Original Message - > Hi List, > > Here is a contrived example of something that approximates what I'm > trying to do in the real world: > > I have 2 bundles, both of which use a shared component. I only want >

[WiX-users] Changing a components keypath

2013-04-08 Thread Simon Stassen
ght be to use a different directory for the files in this component in the next release - also not great. Am I missing an obvious fix? Can anyone suggest another solution? Regards,Simon --

[WiX-users] Passing parameters to upgrade uninstalls

2013-04-17 Thread Simon Stevenson
Is it possible to pass parameters to the msi being uninstalled during an upgrade? I am using the Upgrade tag to do my upgrades. -- Precog is a next-generation analytics platform capable of advanced analytics on semi-struct

Re: [WiX-users] Passing parameters to upgrade uninstalls

2013-04-17 Thread Simon Stevenson
That is sufficient for my needs (not removing a registry key when upgrading), thanks Rob! On 17 April 2013 23:35, Rob Mensching wrote: > Unfortunately, no. The child MSI just gets `UPGRADINGPRODUCTCODE`. > > > On Wed, Apr 17, 2013 at 12:13 AM, Simon Stevenson > wrote: > >

[WiX-users] dotnetfx35.exe and hkcr\installer\dependencies

2013-04-24 Thread Simon Detheridge
Hello, I'm noticing quite an awkward problem with the dotnet 3.5 installer. Specifically, it appears to wipe out hkcr\installer\dependencies when a user performs a repair. I am using wix dependency extension and this is causing something of a problem on a few Xp machines (which unfortunately

[WiX-users] "Asia" error

2013-06-12 Thread Simon Stevenson
We are getting an error in some cases where we are installing .net 4, and the user is presented with the message "Asia". After some investigation it seems that the .net installer is returning exit code 5100, but it is somehow being interpreted as a HRESULT which happens to be the string "Asia". Ha

Re: [WiX-users] "Asia" error

2013-06-13 Thread Simon Stevenson
gt; An: General discussion for Windows Installer XML toolset. > Betreff: Re: [WiX-users] "Asia" error > > IIRC, 5100 was their return code for restart required or something? They > had some very strange return codes for a while. They are documented > somewhere on MSDN, IIRC... b

Re: [WiX-users] "Asia" error

2013-06-15 Thread Simon Stevenson
discussion for Windows Installer XML toolset.<mailto:wix-users@lists.sourceforge.net> Subject: Re: [WiX-users] "Asia" error The wixstdba doesn't provide such a mechanism today. You could write a custom BA to do it, or work with wix-devs to enhance the wixstdba to handle the scen

Re: [WiX-users] "Asia" error

2013-06-15 Thread Simon Stevenson
toolset. Subject: Re: [WiX-users] "Asia" error The wixstdba doesn't provide such a mechanism today. You could write a custom BA to do it, or work with wix-devs to enhance the wixstdba to handle the scenario. On Thu, Jun 13, 2013 at 11:37 PM, Simon Stevenson wrote: > 5100

[WiX-users] SETUPBLD and BURN, multiple uninstalls

2010-07-23 Thread Simon Topley
e day we'll get this right I'm sure .whatever happened to that portable executable idea, I liked that. Simon Disclaimer: This electronic communication and its attachments may contain confidential, proprietary and/or legally privileged information which are for the sole use of the in

[WiX-users] Uninstall list icon

2010-07-26 Thread Simon Topley
oduct.. Simon Disclaimer: This electronic communication and its attachments may contain confidential, proprietary and/or legally privileged information which are for the sole use of the intended recipient. If you are not the intended recipient, any use, distribution, or reproduction of this communic

Re: [WiX-users] Uninstall list icon

2010-07-26 Thread Simon Topley
d Office - Helix Building, West Of Scotland Science Park, Glasgow G20 0SP Email Disclaimer -Original Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: 26 July 2010 10:53 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Uninstall list icon Hello all, A simple one h

Re: [WiX-users] Windows service installation error

2010-07-26 Thread Simon Topley
the error message maybe incorrect, remove the start=install part and attempt to start it post install manually... it maybe that the service is dependent on a file that is not yet installed (.net or CRT etc) -Original Message- From: rahul.ekb...@sungard.com [mailto:rahul.ekb...@sungard.co

[WiX-users] Upgrade removes all files

2010-10-01 Thread Simon Chromow
Hello, I have a problem with running an upgrade to newer version with Wix. When i'm doing an upgrade from version 1.0.0 to version 2.0.0, at first all files are updated. But then after InstallFinalize all files except the files added during the upgrade are removed. Which means also the updat

[WiX-users] Protect Files from beeing uninstalled

2010-10-04 Thread Simon Chromow
Hello, during my upgrade from version 1 to version 2 the removeexistingproducts action deletes all files of version 1. What I need to know is, is it possible to protect some files( for example *.config ) from being unistalled or overwritten? Thanks Simon

Re: [WiX-users] Custom Action

2010-11-03 Thread Simon Dahlbacka
I had a similar problem a long while ago, check this thread: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/adding-non-default-extension-td698069.html#a698071 On Wed, Nov 3, 2010 at 7:46 PM, Socky, David R (GE Energy) wrote: > In a Wix install project (using Visual Studio 2010 an

[WiX-users] Columned ListBox or DataGrid on Custom Dialog???

2010-11-08 Thread Simon Chromow
Hi wix-users, I'm trying to create a Custom Dialog, with a Data Grid on it. My question is: Is this possible? And if yes, please tell me. I think it should be possible because VolumeCostList also has Columns. Can I Use VolumeCostList as a DataGrid? Thanks for your efforts,

[WiX-users] DTF: using WCF service in immediate custom action => 2896

2010-11-18 Thread Simon Dahlbacka
is set to have .net 3.5 as target framework I'm using wix 3.6.1029.0 What am I missing? regards, Simon -- Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECM

Re: [WiX-users] DTF: using WCF service in immediate custom action => 2896 [SOLVED]

2010-11-23 Thread Simon Dahlbacka
Nevermind, got it working. On Thu, Nov 18, 2010 at 4:06 PM, Simon Dahlbacka wrote: > I'm trying to create an immediate custom action that would allow user > to "test connection" to a wcf server. > > > DllEntry="TestConnection" Return="check" E

[WiX-users] Define Bootstrapper Order???

2010-12-02 Thread Simon Chromow
Hello, I'm using WIX 3.6. Is it possible to define the order, how the bootstrapper packages are installed??? -- Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC ba

Re: [WiX-users] Define Bootstrapper Order???

2010-12-06 Thread Simon Chromow
aller XML toolset. Betreff: Re: [WiX-users] Define Bootstrapper Order??? Yes. Actually, it's required. The Chain defines the Package order. You can also Fragment your PackageGroups and tie the chain back together using the After attribute. On Thu, Dec 2, 2010 at 6:49 AM, Simon Chromow wrote

Re: [WiX-users] Any option to run 3.0 and 3.5 on a single build server side-by-side?

2010-12-22 Thread Simon Dahlbacka
ut I think you'll find them anyway Hth, Simon On Dec 22, 2010 11:08 AM, "Yan Sklyarenko" > wrote: > Hello WiX Community, > > I know it is not possible to install both WiX 3.0 and 3.5 on a single server > the usual way. > I face with the situation when part of my pro

[WiX-users] Set property from feature

2011-01-19 Thread Simon Topley
rty being set incorrectly when i do or don't select that feature to be installed: ?feWIA>2 OR $feWIA>2 any more offers ladies and gentlemen? Any help will be kindly received. Simon Disclaimer: This electronic communication and its attachments may contain confidenti

Re: [WiX-users] Set property from feature

2011-01-19 Thread Simon Topley
sorry the first one of them uses the component: ?cWIAServices>2 OR $cWIAServices>2 but i still get: MSI (s) (64:E8) [10:05:59:199]: PROPERTY CHANGE: Modifying CONFIGREQUIRED property. Its current value is '0'. Its new value: '1'. when the component is n

Re: [WiX-users] Set property from feature

2011-01-20 Thread Simon Topley
just to clarify that this doesn't work for me if I use the component state instead of the feature state Simon -Original Message- From: Simon Topley Sent: 19 January 2011 18:10 To: 'wix-users@lists.sourceforge.net' Subject: RE: Set property from feature sorry the first o

Re: [WiX-users] Set property from feature

2011-01-20 Thread Simon Topley
mc.com] Sent: 20 January 2011 15:01 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Set property from feature Conditions $cWIAServices=3 and &feWIA=3 should work correctly. Maksim -Original Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: Thursday, Jan

Re: [WiX-users] Set property from feature

2011-01-20 Thread Simon Topley
e bonkers... more so -Original Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: 20 January 2011 15:45 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Set property from feature tell me about it. I've just tried $cWIAServices=3 and I still

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
RED=1) gives me a checkbox when i wouldn't expect it, and doesn't give me one when I would expect it. The feature I wish to exclude is never installed: NOT CONFIGREQUIRED=1 -Original Message----- From: Simon Topley [mailto:simon.top...@mwhsoft.com] S

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
f have one feature hinged off another, or the condition statement is screwed. -Original Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: 21 January 2011 09:11 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Set property from feature

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
I see, so when I ask for CostFinalize I get it in the UI AND execute sequence. Is there any way to tell it to only use one of the other? Would this have a knock on effect on using the same property to enable/disable other features? Simon -Original Message- From: maksim.vazhe...@emc.com

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
ginal Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: Thursday, January 20, 2011 7:05 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Set property from feature I also seem to get 2 log entries for the same thing: Action ended 08:

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
a file in feature C.. how do I do this seemingly simple task? Simon -Original Message- From: maksim.vazhe...@emc.com [mailto:maksim.vazhe...@emc.com] Sent: 21 January 2011 11:21 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Set property from feature Read WiX documentation.

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
costFinalize maybe too early since the user has'n yet selected which features they want, but it is the only one I can us with getting " light.exe : error LGHT0001 : Found an ActionRow with a non-existent Before action." -Original Message----- From: Simon Topley [m

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
a! I see, the "sequence" can be both, ui or execute, sorry I just assumed is was a number! I'll try this.. Thanks for your patience Maksim -Original Message----- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: 21 January 2011 11:47 To: General discussion for Wi

Re: [WiX-users] Set property from feature

2011-01-21 Thread Simon Topley
Thank you Maksim the property is now being set correctly. Sadly my other features and the checkbax are ignoring the value anyway :( Maybe one for next week . -Original Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: 21 January 2011 11:57 To: General discussion for

[WiX-users] feature and UI control responding to Property

2011-01-21 Thread Simon Topley
fore the property is being set. here are my conditions NOT CONFIGREQUIRED and NOT Installed AND CONFIGREQUIRED Have a good weekend all. I'll be tackling this again Monday morning :( Simon Disclaimer: This electronic communication and its attachments may

[WiX-users] Feature condition evaluation

2011-01-24 Thread Simon Topley
Afternoon all, SO I'm back trying to tackle this issue with my SetProperty after Costfinalize. The property is set correctly, but nothing now seems to respond to it. MSI (s) (3C:98) [04:37:53:630]: Doing action: SetCONFIGREQUIRED Action 04:37:53: SetCONFIGREQUIRED. Action start 04:37:53: SetCON

Re: [WiX-users] Feature condition evaluation

2011-01-26 Thread Simon Topley
uldn't be included. Then I'll move onto trying to figure out why my checkbox on the exit dialog never reacts correctly to this property I managed to set. Simon -Original Message- From: Blair [mailto:os...@live.com] Sent: 25 January 2011 08:21 To: 'General discussion for Wind

Re: [WiX-users] Feature condition evaluation

2011-01-26 Thread Simon Topley
igT>2 although I'm sure it won't work.. I'll try it. -Original Message- From: Simon Topley [mailto:simon.top...@mwhsoft.com] Sent: 26 January 2011 10:14 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Feature condi

Re: [WiX-users] Feature condition evaluation

2011-01-26 Thread Simon Topley
ork now is this checkbox, which seems to ignore the components install or action state. More new as it comes. Simon -Original Message- From: maksim.vazhe...@emc.com [mailto:maksim.vazhe...@emc.com] Sent: 26 January 2011 11:49 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Fe

Re: [WiX-users] Feature condition evaluation

2011-01-26 Thread Simon Topley
and the problem was... I was only testing the checkbox after installing then doing a "change" install. so the "Not Installed" was stopping it from working. Thanks for your help everyone, I knew it had to be simple Simon -Original Message- From: Simon Topl

[WiX-users] BadImageFormatException when using .NET 4 CustomAction assembly

2011-02-04 Thread Zinkevicius, Simon
7;ve updated my CustomActions.config to the following: But I still get the same exception. Is this a limitation of WiX? Can I not use .NET 4? Thanks, Simon -- The modern datacenter depends on netwo

[WiX-users] Shortcut highlight in start mune post install

2012-05-09 Thread Simon Topley
Hello all, I have a number of shortcuts I add to the start menu during installation, however only one of them in highlighted to the user as a new application post install. Is there any way to explicitly control which shortcuts are highlighted? Simon Disclaimer: This electronic communication

Re: [WiX-users] Shortcut highlight in start mune post install

2012-05-10 Thread Simon Topley
Thank you phil, this clears it up, I have 2 shortcuts to one exe, just with a different argument. Simon -Original Message- From: Philip Sayers [mailto:p...@cds-am.net] Sent: 09 May 2012 15:22 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users

Re: [WiX-users] Managing dependencies to preprocessor extensions

2012-05-10 Thread Simon Dahlbacka
The name in the error message and the name of the dll is spelled differently, can it be as simple as that? /Simon On Thu, May 10, 2012 at 3:00 PM, Morten Lemvigh < morten.lemv...@novasoftware.se> wrote: > I have written a preprocessor extension that has a dependency to another > as

[WiX-users] Rebooting System and Continuing with Bundle immediatly after .Net 4.0 was installed

2012-05-22 Thread Simon Chromow
Hello everyone, Has anyone done something like that? I need to force the reboot after Framework has been installed. This where I got. What am I doing wrong? Thanks for your efforts, Simon

Re: [WiX-users] Rebooting System and Continuing with Bundle immediatly after .Net 4.0 was installed

2012-05-22 Thread Simon Chromow
installed I would assume that the exitcode values are not working correctly as I force a reboot when installing Windows Installer 4.5 but I don't bother checking the exit codes (omit the value attribute). Do you really need to reboot after installing dotnet? Richard Mayes On 22 May 2012 08:17,

[WiX-users] Burn: How to suppress Payload Verification after reboot

2012-06-04 Thread Simon Chromow
Hello everyone, is it possible to suppress the verification of an acquired payload after the system/bundle restarted? Or is it even possible to suppress the payload caching? Thanks for your efforts, Simon Chromow

Re: [WiX-users] Burn: How to suppress Payload Verification after reboot

2012-06-05 Thread Simon Chromow
verification was always run. On Mon, Jun 4, 2012 at 3:35 AM, Simon Chromow wrote: > Hello everyone, > is it possible to suppress the verification of an acquired payload > after the system/bundle restarted? > Or is it even possible to suppress the payload caching? > > Thanks for your

[WiX-users] failed to uninstall 3.6.2130.0 ?

2012-09-03 Thread Simon Dahlbacka
I was about to install the final 3.6 version but got uninstall failure, how do I get it off my machine so I can get the correct version installed? Here's the log file: [2354:25D8][2012-09-04T09:09:25]: Burn v3.6.2130.0, path: C:\ProgramData\Package Cache\{bc918578-6003-4542-b8de-d5714088605e}\WiX

Re: [WiX-users] failed to uninstall 3.6.2130.0 ?

2012-09-05 Thread Simon Dahlbacka
.exe that you are uninstalling. If Burn finds the > file next locally, it won't try to download from the internet and the > uninstall should proceed. > On Mon, Sep 3, 2012 at 11:24 PM, Simon Dahlbacka > wrote: > > > I was about to install the final 3.6 version but got uninstal

Re: [WiX-users] How to create a website with HTTPS using WIX

2012-09-26 Thread Simon Hawke
Hi. I came up against this too. I had the server SSL certificate in (Local machine\my) already. I wrote a custom action in C# to take the name of the website as a parameter and install the certificate into the website given the certificate's 'friendly id' using the Microsoft.Web.Administration l

[WiX-users] WixUI_FeatureTree problem

2012-10-05 Thread Simon Zupan
is nothing about installing web site, which is one of the most common instalation today. Do you have some oter book for this purpose or some url with examples? Thank you for your answer, Simon -- Don't let slow site

[WiX-users] Generic wix Project

2014-05-23 Thread Pesant, Simon
RunPostBuildEvent)' != 'OnOutputUpdated' or '$(_TargetOutputTimestampBeforeCompileAndLink)' != '$(_TargetOutputTimestampAfterCompileAndLink)' )) was evaluated as ( '' != '' and ( '' != 'OnOutputUpdated' or &#

  1   2   3   4   >