github.com/observiq/bindplane-agent@v1.51.0/windows/templates/CustomExitDialog.wxs (about) 1 <?xml version="1.0" encoding="UTF-8"?> 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 3 <Fragment> 4 <UI Id="CustomExitDialogUI"> 5 <Dialog Id="CustomExitDialog" Width="370" Height="270" Title="!(loc.ExitDialog_Title)"> 6 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIFinish)" /> 7 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUICancel)" /> 8 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.ExitDialogBitmap)" /> 9 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" /> 10 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> 11 <Control Id="InstallDescription" Hidden="yes" Type="Text" X="135" Y="70" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Text="Config location: 12 [INSTALLDIR]config.yaml 13 To stop the agent service, run: 14 Stop-Service -Name observiq-otel-collector 15 To start the agent service, run: 16 Start-Service -Name observiq-otel-collector 17 To restart agent the service, run: 18 Restart-Service -Name observiq-otel-collector" > 19 <Condition Action="show">NOT Installed</Condition> 20 </Control> 21 <Control Id="UninstallDescription" Hidden="yes" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogDescription)" > 22 <Condition Action="show">Installed</Condition> 23 </Control> 24 <Control Id="DocLink" Hidden="yes" Type="Hyperlink" X="135" Y="200" Width="220" Height="20" Transparent="yes"> 25 <Text><![CDATA[<a href="https://github.com/observIQ/bindplane-agent/blob/main/docs/installation-windows.md#configuring-the-agent">Click here for online documentation on configuration.</a>]]></Text> 26 <Condition Action="show">NOT Installed</Condition> 27 </Control> 28 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" /> 29 </Dialog> 30 </UI> 31 </Fragment> 32 </Wix>