Skip to content

Commit

Permalink
comment out delete supervisor storage
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaasman00 committed Oct 14, 2024
1 parent b97a3b7 commit d55ae8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions windows/templates/product.wxs
Original file line number Diff line number Diff line change
@@ -215,12 +215,12 @@

<CustomAction Id="CustomExecRemoveSupervisorYaml" BinaryKey="WixCA" DllEntry="WixQuietExec" Execute="deferred" Impersonate="no" Return="ignore" />

<CustomAction Id="CustomExecRemoveSupervisorStorage_set"
<!-- <CustomAction Id="CustomExecRemoveSupervisorStorage_set"
Property="CustomExecRemoveSupervisorStorage"
Value="&quot;[CMDEXE]&quot; \C del -r &quot;[INSTALLDIR]supervisor_storage&quot;"
Execute="immediate"/>
<CustomAction Id="CustomExecRemoveSupervisorStorage" BinaryKey="WixCA" DllEntry="WixQuietExec" Execute="deferred" Impersonate="no" Return="ignore" />
<CustomAction Id="CustomExecRemoveSupervisorStorage" BinaryKey="WixCA" DllEntry="WixQuietExec" Execute="deferred" Impersonate="no" Return="ignore" /> -->

<InstallExecuteSequence>
{{range $i, $h := .Hooks}}
@@ -255,13 +255,13 @@
<![CDATA[(VersionNT >= 603 OR VersionNT64 >= 603) and REMOVE="ALL" and not UPGRADINGPRODUCTCODE]]>
</Custom>

<!-- Schedule the action that removes the supervisor_storage dir on final uninstall -->
<!-- Schedule the action that removes the supervisor_storage dir on final uninstall
<Custom Action="CustomExecRemoveSupervisorStorage_set" After="InstallInitialize" >
<![CDATA[(VersionNT >= 603 OR VersionNT64 >= 603) and REMOVE="ALL" and not UPGRADINGPRODUCTCODE]]>
</Custom>
<Custom Action="CustomExecRemoveSupervisorStorage" Before="RemoveFiles" >
<![CDATA[(VersionNT >= 603 OR VersionNT64 >= 603) and REMOVE="ALL" and not UPGRADINGPRODUCTCODE]]>
</Custom>
</Custom> -->
</InstallExecuteSequence>

<Feature Id="DefaultFeature" Level="1">

0 comments on commit d55ae8f

Please sign in to comment.