Jeremiah, yes, the relative pathing is correct.  The problem is not about 
finding the file but rather the rollback logic.  Thank you for the suggestion 
though.

Greg

----------------------------------------------------------------------

Message: 1
Date: Thu, 2 May 2013 18:20:10 -0500
From: Jeremiahf <jeremi...@gmail.com>
Subject: Re: [WiX-users] Why is RollbackBoundary discarded?
To: "General discussion for Windows Installer XML toolset."
        <wix-users@lists.sourceforge.net>
Message-ID:
        <cab-_04mkj8xnmvzsr7kzvl094zdxchtjf-2sosdfk64hkax...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Are you sure this is correct?

$(var.ProjectDir)..\..\

How many folders are you actually backing out then back into and are they 
located in your Project Directory?

J


On Thu, May 2, 2013 at 6:05 PM, Prosch, Greg <gregpro...@a-tsolutions.com>wrote:

> For the burn code below I am getting the following error message:
>
> warning LGHT1129: The RollbackBoundary 
> 'After_PowerShellAccessPolicyConfig' was discarded because it was not 
> followed by a package. Without a package the rollback boundary doesn't 
> do anything. Verify that the RollbackBoundary element is not followed 
> by another RollbackBoundary and that the element is not at the end of 
> the chain.
>
> Why?  The RollbackBoundary appears to be followed by a package.
>
>       <!-- Set the PowerShell ExecutionPolicy to "unrestricted" -->
>       <ExePackage
>         Id="PowerShellAccessPolicyConfig"
>
> SourceFile="$(var.ProjectDir)..\..\ATTACExplorerLauncher\InstallScripts\PowerShellAccessPolicyConfig.bat"
>         Cache="no"
>         Compressed="yes"
>         PerMachine="yes"
>         Permanent="yes"
>         Vital="yes"
>         >
>       </ExePackage>
>
>       <RollbackBoundary Id="After_PowerShellAccessPolicyConfig" />
>
>       <!-- Ensure that all of the required Windows Features are enabled -->
>       <ExePackage
>         Id="EnableWindowsFeatures"
>
> SourceFile="$(var.ProjectDir)..\..\ATTACExplorerLauncher\InstallScripts\EnableWindowsFeatures.bat"
>         Cache="no"
>         Compressed="yes"
>         PerMachine="yes"
>         Permanent="yes"
>         Vital="yes"
>         After="PowerShellAccessPolicyConfig"
>         >
>       </ExePackage>
>

------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to