Skip to content

Commit

Permalink
ref #538: add configuration lines only when Not Installed
Browse files Browse the repository at this point in the history
  • Loading branch information
torakiki committed Nov 6, 2023
1 parent 041c198 commit 8d1fdce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdfsam-basic/src/msi/pdfsam.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<CustomAction Id="LaunchApplication" Directory="APPLICATIONFOLDER" ExeCommand='[APPLICATIONFOLDER]pdfsam.exe' Execute="immediate" Return="asyncNoWait"/>

<InstallExecuteSequence>
<Custom Action="SetCustomActionDataValue" Before="InstallFinalize"></Custom>
<Custom Action="CustomActions.AddLine" After="SetCustomActionDataValue">NETFRAMEWORK30 OR NETFRAMEWORK35 OR WIX_IS_NETFRAMEWORK_40_OR_LATER_INSTALLED</Custom>
<Custom Action="SetCustomActionDataValue" Before="InstallFinalize">NOT Installed</Custom>
<Custom Action="CustomActions.AddLine" After="SetCustomActionDataValue">NOT Installed AND (NETFRAMEWORK30 OR NETFRAMEWORK35 OR WIX_IS_NETFRAMEWORK_40_OR_LATER_INSTALLED)</Custom>
<Custom Action="LaunchBrowser" Before="InstallFinalize">NOT Installed AND (SKIPTHANKSPAGE = "No")</Custom>
</InstallExecuteSequence>

Expand Down

0 comments on commit 8d1fdce

Please sign in to comment.