Re: [WiX-users] Active directory browser

2014-11-12 Thread Bruce Cran
I don't know if it would be any use, but Apache has a suite of AD/LDAP tools/libraries at http://directory.apache.org/studio/ . -- Bruce > On Nov 11, 2014, at 10:12 PM, pezmannen wrote: > > My setup includes several dialogs where you need to specify different Active > Directory accounts. For

Re: [WiX-users] Burn doesn't warn if package names collide

2014-10-31 Thread Bruce Cran
On 10/31/2014 11:55 AM, Rob Mensching wrote: > Could you file a bug to say that there should be an error message too? Done: http://wixtoolset.org/issues/4574/ . -- Bruce -- __

Re: [WiX-users] Burn doesn't warn if package names collide

2014-10-31 Thread Bruce Cran
ureVerification="yes" > InstallCondition="VersionNT = v6.1 AND NTProductType > = 1"> > > > ... > > Though I could see this as being a valid feature request to emit a warning. > > -Original Message- &g

Re: [WiX-users] Burn doesn't warn if package names collide

2014-10-31 Thread Bruce Cran
On 10/31/2014 12:11 AM, Rob Mensching wrote: > Just so I'm sure I follow exactly, can you provide snippet of example code > that demonstrates the issue? -- Bruce --

[WiX-users] Burn doesn't warn if package names collide

2014-10-30 Thread Bruce Cran
I noticed that Burn (in 3.9 RC4) doesn't provide any warning or error if two packages in a chain are in different directories with the same file name: it appears to silently overwrite one of the copies. -- Bruce --

[WiX-users] Burn: different bundles, same msi package - not detected

2014-04-22 Thread Bruce Cran
I have two different products/bundles that install different versions of the same msi package. I had expected that the bundle would detect the existing installation of the msi and log it as an upgrade, but instead it's logging it as "absent" and the subsequent execution of the package runs the

Re: [WiX-users] Burn: doing an Administrative Installation

2014-04-10 Thread Bruce Cran
On 4/10/2014 3:13 AM, David Watson wrote: > You can do a /layout to get the contents of the bundle, then you would need > to do an admin install with the msi. > > Don't know if there is a /admin on the bundle, you could make one if not that > calls each msi in turn with admin parameters. Unfortu

[WiX-users] Burn: doing an Administrative Installation

2014-04-09 Thread Bruce Cran
We package our MSI using Burn, and have had a request to allow users to dump the files in one of the MSIs to a directory instead of installing them - i.e. doing an Administrative installation (http://msdn.microsoft.com/en-us/library/aa367541%28v=vs.85%29.aspx). Does the functionality exist in B

[WiX-users] Burn: "Failed to initialize COM"

2014-03-24 Thread Bruce Cran
I have a machine running Windows 8.1 where the Burn uninstaller is failing since it appears that the call to CoInitialize() is failing: Burn v3.9.203.0, Windows v6.3 (Build 9600: Service Pack 0), path: C:\ProgramData\Package Cache\{GUID}\product.exe, cmdline: '/uninstall /quiet /norestart -burn.un

[WiX-users] Burn: util:ProductSearch logging 3 errors when no matching product found

2014-01-30 Thread Bruce Cran
I'm using WiX 3.9.120.0 - in Burn, is util:ProductSearch supposed to log errors when it doesn't find a matching product? I'm using: The log contains: [13E8:23D4][2014-01-30T12:01:15]e000: Error 0x80020005: Failed to copy variant value. [13E8:23D4][2014-01-30T12:01:15]e000: Error 0x80020005: F

Re: [WiX-users] [SPAM] Re: 0x80096005: timestamp signature and/or certificate could not be verified

2014-01-28 Thread Bruce Cran
On 1/28/2014 3:27 PM, Phill Hogland wrote: > There are other similar reports on the internet which are not related to Wix, > so the root problem is probably more along the lines that Christopher > suggested. When you recompiled did you consider using > MsiPackage/@SuppressSignatureVerification? T

Re: [WiX-users] Signing all DLLs and EXEs in project

2013-12-18 Thread Bruce Cran
On 12/18/2013 1:21 PM, John Cooper wrote: > If you're signing more than a dozen or so files in one pass, you've got > bigger problems. :) Besides which, like many build-related tasks, signing > is an activity best done in the same project generating the binary. +1. Unless you're talking about

Re: [WiX-users] Signing all DLLs and EXEs in project

2013-12-18 Thread Bruce Cran
I guess the OP is talking about native binaries, not .NET assemblies since he mentioned signtool - sn is the .NET signing tool. -- Bruce On 12/18/2013 1:23 PM, John Cooper wrote: > You'll have to correctly handle the case where a binary cannot be signed > because it has references to unsigned

Re: [WiX-users] Microsoft Reciprocal License explaination

2013-11-20 Thread Bruce Cran
so awesome you want to prevent your competitors from getting the improvements :) -- Bruce Cran -- Shape the Mobile Experience: Free Subscription Software experts and developers: Be at the forefront of tech innovation. Int

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

2013-10-31 Thread Bruce Cran
2 characters - anything more than that and it fails with an "Insufficient buffer" error. Could something similar be happening? -- Bruce Cran -- Android is increasing in popularity, but the open development platform t

Re: [WiX-users] [SPAM] Re: [SPAM] Re: Errors installing 3.7

2013-10-30 Thread Bruce Cran
erver.aspx for details of what can go wrong. You're supposed to import just the specific certificates you need from another machine. -- Bruce Cran -- Android is increasing in popularity, but the open development

Re: [WiX-users] repair does not repair file that was changed

2013-10-28 Thread Bruce Cran
On 10/28/2013 1:35 PM, Andrew Makhorin wrote: > Is there any way to tell the installer to always install original files > provided in .msi on repairing/reinstalling the product? See http://technet.microsoft.com/en-us/library/cc759262%28v=ws.10%29.aspx?ppud=4#BKMK_Repair . -- Bruce --

Re: [WiX-users] Signing binaries and msi...

2013-10-23 Thread Bruce Cran
retries and signingtargets parameters. -- Bruce Cran -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get th

Re: [WiX-users] Signing binaries and msi...

2013-10-22 Thread Bruce Cran
sk for running signtool, SignFile - http://msdn.microsoft.com/en-us/library/ms164304.aspx. But I ended up writing my own implementation which retries 10 times with pauses in-between to try and handle network problems which prevent the timestamp server being reached. -- Bruce Cran ---

Re: [WiX-users] Signing binaries and msi...

2013-10-22 Thread Bruce Cran
you have a Globalsign cert, you might want to use timestamp.globalsign.com instead etc. And for the MSI file, you might want to add: /n text-that-should-appear-in-UAC-elevation-prompt-description Otherwise, the description will contain a randomly-generate

Re: [WiX-users] wixtoolset.org weekly builds downloads missing (404)

2013-10-11 Thread Bruce Cran
On 10/11/2013 5:42 PM, Bruce Cran wrote: > None of the builds via wixtoolset.org are working. For example trying > to download 3.8.1007 results in the broken link > http://wixtoolset.org/downloads/v3.8.1007.0/wix38.exe. > After refreshing each page it now works. --

[WiX-users] wixtoolset.org weekly builds downloads missing (404)

2013-10-11 Thread Bruce Cran
None of the builds via wixtoolset.org are working. For example trying to download 3.8.1007 results in the broken link http://wixtoolset.org/downloads/v3.8.1007.0/wix38.exe. -- Bruce Cran -- October Webinars: Code for

Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-08 Thread Bruce Cran
On 10/8/2013 1:03 AM, Blair Murri wrote: > The rest (of us) buy the book > (http://www.amazon.com/gp/product/0735626286?ie=UTF8&tag=sedodream-20&linkCode=xm2&camp=1789&creativeASIN=0735626286) Note that the link is for the first edition, not the s

[WiX-users] wixtoolset.org reporting 503 - service unavailable

2013-10-04 Thread Bruce Cran
http://wixtoolset.org/ reports: Service Unavailable HTTP Error 503. The service is unavailable. -- Bruce Cran -- October Webinars: Code

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

2013-09-23 Thread Bruce Cran
On 9/23/2013 5:23 AM, Steven Ogilvie wrote: > Check out VersionNT and NTProductType (Google them to get the proper values > for the two OS's you want) Or read my reply :) -- Bruce Cran -- LIMITED TIME SALE

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

2013-09-20 Thread Bruce Cran
o support it and future versions of Windows (2008R2 is 6.1, 2012 is 6.2, 2012 R2 is 6.3). -- Bruce Cran -- LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99! 1,500+ hours of tutorials including VisualStu

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

2013-09-18 Thread Bruce Cran
On 18/09/2013 14:08, Steven Ogilvie wrote: > So it is not currently supported? I don't think so. At least, the WixStdBA doesn't. -- Bruce Cran -- LIMITED TIME SALE - Full Year of Microsoft Training Fo

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

2013-09-18 Thread Bruce Cran
t to final window in burn > bootstrapper/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" wrote: > >> No sorry >> >> I am not usin

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

2013-09-06 Thread Bruce Cran
x.codeplex.com yourself? -- Bruce Cran -- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an in

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

2013-08-31 Thread Bruce Cran
Can't Steven put the change in the public domain and someone who's already signed the agreement can commit it? -- Bruce Sent from my iPhone On 31 Aug 2013, at 04:10, Bob Arnson wrote: > On 28-Aug-13 13:29, Steven Ogilvie wrote: >> > FontId="2" HideWhenDisabled="yes" >> DisablePrefix="ye

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

2013-08-31 Thread Bruce Cran
Aug 2013, at 14:48, "Steven Ogilvie" 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 [mailto:br...@cran.org.uk] >> Sent: August-30-13 9:00 A

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

2013-08-30 Thread Bruce Cran
_CONTROL_FAILURE_HEADER, FALSE); >} >else > { >ThemeControlEnable(m_pTheme, > WIXSTDBA_CONTROL_FAILURE_HEADER, TRUE); >} > > That should be it :) > > Cheers, >

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

2013-08-28 Thread Bruce Cran
org/releases/ ? > > If so, how will I be able to add text to the Setup Complete box? My apologies > if I seem a tad dense, but this is very unfamiliar territory for me. > > -Original Message- > From: Bruce Cran [mailto:br...@cran.org.uk] > Sent: Wednesday, August 28, 20

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

2013-08-28 Thread Bruce Cran
Okay, I can submit it. -- Bruce Sent from my iPhone On 28 Aug 2013, at 18:13, Steven Ogilvie wrote: > You want me to make the change for 3.8 or your going to make the change? > > I can send you my code for the BA if you want :) > > -Original Message- > From: Bru

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

2013-08-28 Thread Bruce Cran
n, because I don't know what that means (and I > have yet to figure out where and how to modify .wxl files). > > Alain > > -Original Message- > From: Bruce Cran [mailto:br...@cran.org.uk] > Sent: Wednesday, August 28, 2013 11:39 AM > To: General discussi

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

2013-08-28 Thread Bruce Cran
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 Ogilvie wrote: > Yes exactly > > BA is using the same property for Setup/Uninstall for the success/failure > string > > I fixed th

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

2013-08-27 Thread Bruce Cran
x27; pages. In particular, people have complained to me about the fact that when uninstall completes it reports "Setup Success". -- Bruce Cran -- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2

[WiX-users] Burn, signature verification and failure on Vista

2013-08-27 Thread Bruce Cran
uction is there some other way Windows is likely to have the updated certificates? Or, should I remove the signature on the installer and MSI file to avoid this problem? Or is there a way to ask Burn to skip the verification s

Re: [WiX-users] Burn uninstalls product instead of upgrading it

2013-08-24 Thread Bruce Cran
On 23/08/2013 21:58, Rob Mensching wrote: > Might be related to: http://wixtoolset.org/issues/3643/ Thanks, that was the problem. -- Bruce -- Introducing Performance Central, a new site from SourceForge and AppDynamics

Re: [WiX-users] [Wix]: Create silent MSI using Wix

2013-08-23 Thread Bruce Cran
On 23/08/2013 15:20, Alain Forget wrote: > Don't WiX-built MSIs have no UI by default? > > See the second paragraph of > http://wix.tramontana.co.hu/tutorial/user-interface > > So just follow the steps of the Getting Started tutorial, and don't do > anything in the UI section? I think there's a

[WiX-users] Burn uninstalls product instead of upgrading it

2013-08-23 Thread Bruce Cran
idea what I'm doing wrong? -- Bruce Cran -- Introducing Performance Central, a new site from SourceForge and AppDynamics. Performance Central is your source for news, insights, analysis and resources for effi

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

2013-07-16 Thread Bruce Cran
Have you filed a bug report with Microsoft? -- Bruce Cran Sent from my iPhone On 16 Jul 2013, at 13:27, "Gonzalez, John" wrote: > I have the same, or similar, issue. It is not expected and showed up around > the 9419 build release. Currently have no ETA of a fix. >

Re: [WiX-users] Windows updates

2013-07-12 Thread Bruce Cran
the root certificate has already been installed - Windows tries to automatically download it. On a plain Server 2008 machine for example installation fails if it has never been connected to the Internet because the signature can't be

[WiX-users] Burn: installer doesn't restart after reboot when variables are specified on cmdline

2013-06-13 Thread Bruce Cran
it's just missing the RunOnce entry to start it after login. -- Bruce Cran -- This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/

Re: [WiX-users] File version always 1.0.0.0

2013-06-01 Thread Bruce Cran
anufacturer="Us" > Condition="Privileged AND (VersionNT = v6.1 OR VersionNT = v6.2)" > DisableModify="yes" Off-topic, but Windows Blue will be a free upgrade from Windows 8 and

[WiX-users] Burn incorrectly logging 'MajorUpgrade' operation

2013-04-26 Thread Bruce Cran
PerMachine, version: a.b.c.d, language: 0 operation: MajorUpgrade Shouldn't it be logging 'operation: None'? -- Bruce Cran -- Try New Relic Now & We'll Send You this Cool Shirt New Relic is

[WiX-users] RelatedBundle, 'Detect' action and result

2013-04-26 Thread Bruce Cran
I'm trying to detect products that can't be installed at the same time as ours, and found RelatedBundle's 'Detect' action. However, I can't see a way of getting the result - is there a way to put the result i

Re: [WiX-users] REMOVE ME PLEASE

2013-04-24 Thread Bruce Cran
On 24/04/2013 10:01, Kagiso Seboni wrote: > Please remove me from the Mailing List You can unsubscribe via the mailing list interface at: https://lists.sourceforge.net/lists/listinfo/wix-users -- Bruce Cran --

Re: [WiX-users] WiX vs NSIS

2013-04-17 Thread Bruce Cran
e main site since 2009, but http://nsis.svn.sourceforge.net/viewvc/nsis/NSIS/trunk/ shows that work is going on, and the Unicode version at http://www.scratchpaper.com/ had a release last year. -- Bruce Cran -- Precog is a n

Re: [WiX-users] WiX vs NSIS

2013-04-16 Thread Bruce Cran
$R2 -1 IntOp $R2 $R2 +1 StrCpy $R3 $R1 1 $R2 StrCmp $R3 "" +8 StrCmp $R3 $R0 0 -3 StrCpy $R3 $R1 $R2 IntOp $R2 $R2 +1 StrCpy $R4 $R1 "" $R2 StrCpy $R1 $R3$R4 IntOp $R2 $R2 -2 Goto -9 StrCpy $R0 $R1 Pop $R4 Pop $R3

Re: [WiX-users] Can't install Wix 3.8 on Windows XP

2013-04-11 Thread Bruce Cran
On 11/04/2013 14:23, Sergey Yukhno wrote: > Can't install Wix 3.8 on Windows XP. > "Wix38.exe is not valid Win32 application." That looks like a problem with the VS 2012 settings. I thought we'd fixed them all - what build are you trying t

Re: [WiX-users] system32 install issue

2013-04-07 Thread Bruce Cran
operty; the syswow64 folder contains 32-bit binaries. -- Bruce Cran -- Minimize network downtime and maximize team effectiveness. Reduce network management and security costs.Learn how to hire the most talented Cisco Cer

Re: [WiX-users] Sign the msi

2013-03-28 Thread Bruce Cran
Or, if you really want it to auto-select which certificate to use! http://timestamp.globalsign.com/scripts/timstamp.dll /d "%(SignMsi.FullPath)"" /> The timestamp URL might be comodo, verisign, globalsign etc. depending on who your Authenticode certificate was purchased from. -- Bruc

Re: [WiX-users] Question about conditional statements in elements

2013-03-23 Thread Bruce Cran
product release, represented as a string GUID, for example "{12345678-1234-1234-1234-123456789012}"." That seems to imply it shouldn't be changed from one build to the next but only when the major, minor or revision fields are changed. -- Bruce Cran ---

Re: [WiX-users] How to pass some arguments during major upgrade to obsoleted msi to prevent removing RegistryKey

2013-03-22 Thread Bruce Cran
move the key. -- Bruce Cran -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn

Re: [WiX-users] Building Wix 3.6

2013-03-19 Thread Bruce Cran
On 19/03/2013 12:31, Bruce Cran wrote: > Clone https://hg.codeplex.com/wix : > > hg clone https://hg.codeplex.com/wix -b wix38 Sorry ignore most of that - those instructions are for WiX 3.8 not 3.6. To get 3.6 you just need to use "-b wix36" when cloning and follow the

Re: [WiX-users] Building Wix 3.6

2013-03-19 Thread Bruce Cran
.sln and build the projects individually. -- Bruce Cran -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://

Re: [WiX-users] how to deal with the service removal during upgrade and repair in WIX?

2013-03-16 Thread Bruce Cran
27; instead. e.g. http://stackoverflow.com/questions/320921/how-to-add-a-wix-custom-action-that-happens-only-on-uninstall-via-msi -- Bruce Cran -- Everyone hates slow websites. So do we. Make your web apps faster with A

[WiX-users] Platform-specific references (difxapp_x64 etc.)

2013-03-13 Thread Bruce Cran
I have to choose to reference either difxapp_x86 _or_ difxapp_x64, but building a 32-bit msi with difxapp_x64 referenced seems to work. -- Bruce Cran -- Everyone hates slow websites. So do we. Make your web apps faster

Re: [WiX-users] Burn: hang after "Apply Complete" on Vista

2013-03-12 Thread Bruce Cran
On 12/03/2013 20:49, Rob Mensching wrote: > Is the task scheduler enabled and running? If not, try that and see if the > problem goes away. Unfortunately it is already running. I'll do some more debugging to see what's going on. -- Bruce > On Tue, Mar 12, 2013 at 12:32 PM

[WiX-users] Burn: hang after "Apply Complete" on Vista

2013-03-12 Thread Bruce Cran
: 0x0, restart: None, ba requested restart: No" and then always hangs, with all 3 threads stuck in GetMessageW. It works with 2008R2: is there a known bug with Vista/2008R1? -- Bruce Cran -- Everyone hates slow websites

[WiX-users] Debugging VS2012 plugin crashes?

2013-02-27 Thread Bruce Cran
I created an MSI project where if I go into the Build tab in the project settings and try to change anything, Visual Studio 2012 crashes. Is there any way of finding out what's going wrong? -- Bruce Cran -- Eve

[WiX-users] "This collection is read-only" error in Visual Studio 2012

2013-02-25 Thread Bruce Cran
I've come across a few problems with the WiX 3.7 plugin with Visual Studio 2012. Today I tried to add a reference to a bootstrapper project by double-clicking on the project name was told "This collection is read-only"; trying it again but clicking the "Add" button worked. Has anyone else come

Re: [WiX-users] Mail from Rob marked as spam

2013-02-20 Thread Bruce Cran
73.107.18; envelope-from=r...@robmensching.com; helo=allium.arvixe.com; -- Bruce Cran -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free

Re: [WiX-users] Bundle registered in ARP after prerequesitesare installed

2013-02-13 Thread Bruce Cran
On 13/02/2013 08:01, Ogrodowski, Sabine (ehem. Frauenhoffer) wrote: > Thank you for your reply. I know, that it can be that simple to use the > WixNetFxExtension. Unfortunately I need to also install on machines that have > no internet access and so I can't use it. That's why I copied some part f

Re: [WiX-users] Creating a bootstrap application and need a more simple UI

2013-02-11 Thread Bruce Cran
ting your UI in burn rather than using the > MSI UI. Neil, From an earlier message: "My issue isn't the installer UI but rather the bootstrapper UI (If that makes sense)." So this _is_ about the Burn UI. -- Bruce Cran ---

Re: [WiX-users] Creating a bootstrap application and need a more simple UI

2013-02-11 Thread Bruce Cran
On 11/02/2013 20:43, joshh wrote: > That is really close to what I am looking for. The only improvement I can > think of would be to reduce the size and have a short message. And maybe a > background logo like the wix ui can have. I agree - it's a bit bare without the eula.

Re: [WiX-users] Creating a bootstrap application and need a more simple UI

2013-02-11 Thread Bruce Cran
ive a simple "Install" button. >From http://neilsleightholm.blogspot.co.uk/2012/05/wix-burn-tipstricks.html all you need to do is use the WixStandardBootstrapperApplication.HyperlinkLicense BA and set WixStdbaLicenseUrl to

Re: [WiX-users] Redisplay MSI's UI when Bootstrapper is run a second time

2013-02-03 Thread Bruce Cran
You can't display a feature tree, but it does support adding checkboxes to the options page which can be used to select features. -- Bruce Cran Sent from my iPhone On 31 Jan 2013, at 17:54, Karl Werner wrote: > Can you have the wix standard bootstrapper prompt the user for

Re: [WiX-users] Set font color in WiXUIExtension UIs

2013-02-03 Thread Bruce Cran
Isn't it just a case of overriding the strings in an additional wxl file? I've done that when using dark backgrounds. -- Bruce Cran Sent from my iPhone On 31 Jan 2013, at 17:51, Rob Mensching wrote: > It is possible. You can create your own UI. I guess I disagree that it

Re: [WiX-users] Repairs and runtimes

2013-01-16 Thread Bruce Cran
t they're less > likely to be downgraded without your knowledge. Yes, it brings back DLL hell - but isn't the answer not to use 'a' for exactly this reason? -- Bruce Cran -- Master Java SE, Java EE,

Re: [WiX-users] Repairs and runtimes

2013-01-15 Thread Bruce Cran
des a hotfix, which is a patched version of the affected library, Microsoft automatically updates library files that are centrally-deployed (installed in System32 Directory)." -- Bruce Cran -- Master SQL Server

[WiX-users] Identical left and right sub-expressions in plan.cpp - bug?

2013-01-14 Thread Bruce Cran
edBundle->package.execute) -- Bruce Cran -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by

[WiX-users] Adding/deleting project configurations

2013-01-05 Thread Bruce Cran
Is adding or deleting project configurations in Visual Studio supposed to work (in WiX 3.7)? With VS2010 when I try and add or remove a configuration to the WiX project in the solution's Configuration Manager it doesn't give any error message but no changes are applied. --

Re: [WiX-users] Transition from InstallShield to WiX

2012-12-29 Thread Bruce Cran
he red UI). -- Bruce Cran -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutori

Re: [WiX-users] WDK 8.0, Driver Verifier and XP/2003 compatiblity

2012-12-19 Thread Bruce Cran
On 19/12/2012 21:09, Bruce Cran wrote: > I know this isn't recommended, but is there some incompatibility > between WDK 8.0 and XP/2003 that prevents drivers running correctly > with Driver Verifier? > We're finding that when Driver Verifier is enabled our driver gets so

[WiX-users] WDK 8.0, Driver Verifier and XP/2003 compatiblity

2012-12-19 Thread Bruce Cran
up calling ExFreePoolWithTag and the driver hangs in RtlpUnwindPrologue (it runs fine without DV enabled). The system's still active, but the driver just never gets any further. -- Bruce Cran -- LogMeIn Rescue: An

Re: [WiX-users] Feature or Chained MSI?

2012-12-05 Thread Bruce Cran
utomated deployment is supposed to work. I've not used GPO, but I think it needs a .msi file in order to install an application? -- Bruce Cran -- LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free

Re: [WiX-users] WixStdBA retry 'cancel' button not working?

2012-12-04 Thread Bruce Cran
d to configure per-machine MSI package. [0654:0178][2012-12-03T14:02:08]w348: Application requested retry of package: package.msi, encountered error: 0x80070643. Retrying... -- Bruce Cran -- LogMeIn Rescue: Anywhere, An

Re: [WiX-users] v3.7.1126.0 on Monday, November 26, 2012

2012-12-03 Thread Bruce Cran
od" for directories, but none of the files. -- Bruce Cran -- Keep yourself connected to Go Parallel: BUILD Helping you discover the best ways to construct your parallel projects. http

[WiX-users] WixStdBA retry 'cancel' button not working?

2012-12-03 Thread Bruce Cran
Has anyone else found that the "cancel" button on the error retry dialog in WixStdBA doesn't work (in 3.7 RC)? I find clicking it displays the same error with an OK button before just retrying anyway. The error when this occurs is "Could not access network locati

Re: [WiX-users] Extract packages from bootstrapper?

2012-11-30 Thread Bruce Cran
On 30/11/2012 21:39, Steven Ogilvie wrote: > Thanks very much Bruce... > > Do you know if this will be done for 3.7? Since we've had 3.7 RC I suspect not. I suspect it's quite low down the priority list and so would need someone to contribute a pat

Re: [WiX-users] Extract packages from bootstrapper?

2012-11-30 Thread Bruce Cran
the embedded packages. -- Bruce Cran -- Keep yourself connected to Go Parallel: TUNE You got it built. Now make it sing. Tune shows you how. http://goparallel.sourceforge.net

Re: [WiX-users] WiX Bootstrapper Bundle creating uninstall shortcut in program files

2012-11-27 Thread Bruce Cran
ninstall key, though I'm not sure it's documented and so might disappear. -- Bruce Cran -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into a

[WiX-users] wcautil.lib in 3.7 RC: LNK4099 warnings (vc110.pdb not found; linking as if no debug info)

2012-11-26 Thread Bruce Cran
C:\Release\vc110.pdb'; linking object as if no debug info wcautil.lib in 3.7 is 528KB vs. 1.5MB in 3.6. What's changed, and should I update my project settings to fix the warning? -- Bruce Cran --

[WiX-users] Burn: won't /layout with reboot pending

2012-11-26 Thread Bruce Cran
stallation files. -- Bruce Cran -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 3

Re: [WiX-users] Burn: associating checkbox with feature installation of specific MSI?

2012-11-21 Thread Bruce Cran
On 13/11/2012 15:49, Rob Mensching wrote: > What about using a Feature/Condition instead? Thanks, that works. -- Bruce Cran -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get

[WiX-users] WixStdBA: options browse dialog doesn't work in Server Core

2012-11-21 Thread Bruce Cran
60a-4ddf-94d4-86b7ce3796bb). -- Bruce Cran -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Do

[WiX-users] Burn: FailureRestartText mentions 'rollback'

2012-11-21 Thread Bruce Cran
When a reboot is pending, Burn fails with the message: You must restart your computer to complete the rollback of the software. I'm wondering why it mentions 'rollback' because in this case the reboot is pending following a successful installation of a driver.

[WiX-users] Burn: associating checkbox with feature installation of specific MSI?

2012-11-13 Thread Bruce Cran
Is there currently any simple way to associate a checkbox with feature installation for a specific MSI? From what I've read the only way would be to do conditional installation with ADDLOCAL MsiProperty's set to the feature name, e.g. --

Re: [WiX-users] cannot open Wix tutorials on tramontana.co.hu

2012-10-05 Thread Bruce Cran
On 04/10/2012 20:31, akonsu wrote: > http://wix.tramontana.co.hu/tutorial takes me to a viagra site or something > similar. has the server been hijacked? Strange, I just tried it and it has the old contents - though I definitely remember seeing it with the spammy content in the past. --

Re: [WiX-users] I have heard that MSI is too complicated from a programmer's prospective

2012-10-05 Thread Bruce Cran
of Windows Installer. Burn isn't ideal either since it requires people to write code (C++ or .NET) for the UI and install callbacks and so adds potential for bugs. -- Bruce Cran -- Don't let slow site performanc

Re: [WiX-users] WiX Bootstrapper Bundle creating uninstall shortcut in program files

2012-09-07 Thread Bruce Cran
this point. Need some way to get Product code of bundle. > > do you have any idea on this ? I can't find the post now, but the same question was asked a few months ago and I seem to remember the answer being that you can't get a link to the installer due

Re: [WiX-users] Install the Visual C++ redistributables file vcredist_x86.exe

2012-08-29 Thread Bruce Cran
uiring you to use the .exe instead of the .msm? -- Bruce Cran -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers

Re: [WiX-users] WiX joins the Outercurve Foundation

2012-08-20 Thread Bruce Cran
ome people, it might be worth if/when updating the license for the sample code to make it explicit that the templates generated in Visual Studio won't be under the MS-RL either. -- Bruce Cran -- Live Security Virt

Re: [WiX-users] vcredist_x86.exe Package DownloadUrl

2012-08-20 Thread Bruce Cran
te - but the current VC10 redistributable from the Web site doesn't include the MFC fix from last year. -- Bruce Cran -- Live Security Virtual Conference Exclusive live event will cover all the ways today's secu

Re: [WiX-users] 64bit installer with Wow redirector on the properties

2012-08-20 Thread Bruce Cran
gt; > DestinationProperty="MY_CUSTOM_DESTINATION_SPOOL643" /> > > If you're installing a driver you probably don't want to do this - leave the files in ProgramFiles and let your driver instal

Re: [WiX-users] WiX 3.6 LICENSE.txt - still copyright Microsoft?

2012-08-19 Thread Bruce Cran
On 19/08/2012 08:45, Bruce Cran wrote: > On 17/08/2012 23:29, Bruce Cran wrote: >> I noticed all the files in the WiX repository have been updated with >> "Copyright (c) 2004, Outercurve Foundation" - except LICENSE.txt. >> Was that deliberate, or should that have

Re: [WiX-users] WiX 3.6 LICENSE.txt - still copyright Microsoft?

2012-08-19 Thread Bruce Cran
On 17/08/2012 23:29, Bruce Cran wrote: > I noticed all the files in the WiX repository have been updated with > "Copyright (c) 2004, Outercurve Foundation" - except LICENSE.txt. > Was that deliberate, or should that have been updated too? > There's also test\src\WixTes

[WiX-users] WiX 3.6 LICENSE.txt - still copyright Microsoft?

2012-08-17 Thread Bruce Cran
I noticed all the files in the WiX repository have been updated with "Copyright (c) 2004, Outercurve Foundation" - except LICENSE.txt. Was that deliberate, or should that have been updated too? -- Bruce Cran -

  1   2   3   >