Skip to content

Commit

Permalink
chore: optimize wix cleanup template (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 authored Feb 7, 2024
1 parent dec0adc commit dc4186b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/tauri/templates/cleanup.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Fragment>
<!-- close nyanpasu processes while install-->
<util:CloseApplication Id="NyanpasuCloseApp" Target="Clash Nyanpasu.exe" CloseMessage="yes" RebootPrompt="yes">
<util:CloseApplication Id="NyanpasuCloseApp" Target="Clash Nyanpasu.exe" CloseMessage="yes" RebootPrompt="no" TerminateProcess="yes">
</util:CloseApplication>
<util:CloseApplication Id="NyanpasuCloseService" Target="clash-verge-service.exe" CloseMessage="yes" RebootPrompt="yes">
<util:CloseApplication Id="NyanpasuCloseService" Target="clash-verge-service.exe" CloseMessage="yes" RebootPrompt="no" TerminateProcess="yes">
</util:CloseApplication>
<util:CloseApplication Id="NyanpasuCloseMihomo" Target="mihomo.exe" CloseMessage="yes" RebootPrompt="yes">
<util:CloseApplication Id="NyanpasuCloseMihomo" Target="mihomo.exe" CloseMessage="yes" RebootPrompt="no" TerminateProcess="yes">
</util:CloseApplication>
<util:CloseApplication Id="NyanpasuCloseMihomoAlpha" Target="mihomo-alpha.exe" CloseMessage="yes" RebootPrompt="yes">
<util:CloseApplication Id="NyanpasuCloseMihomoAlpha" Target="mihomo-alpha.exe" CloseMessage="yes" RebootPrompt="no" TerminateProcess="yes">
</util:CloseApplication>
<util:CloseApplication Id="NyanpasuCloseService" Target="clash-rs.exe" CloseMessage="yes" RebootPrompt="yes">
<util:CloseApplication Id="NyanpasuCloseService" Target="clash-rs.exe" CloseMessage="yes" RebootPrompt="no" TerminateProcess="yes">
</util:CloseApplication>
<util:CloseApplication Id="NyanpasuCloseService" Target="clash.exe" CloseMessage="yes" RebootPrompt="yes">
<util:CloseApplication Id="NyanpasuCloseService" Target="clash.exe" CloseMessage="yes" RebootPrompt="no" TerminateProcess="yes">
</util:CloseApplication>
</Fragment>
</Wix>

0 comments on commit dc4186b

Please sign in to comment.