mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Multiple fixes for MSI installer
* Fix #6242 - pinned taskbar shortcuts are not removed on upgrade or uninstall. Icons will be preserved between upgrades. * Fix #6627 - properly set checkboxes for desktop shortcut and autostart of login based on current settings during install * Add documentation shortcuts to the start menu * Auto-accept license if upgrading application
This commit is contained in:
parent
7cb2991a13
commit
724f691e15
@ -15,7 +15,7 @@
|
|||||||
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" />
|
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" />
|
||||||
<!-- Custom Controls for KPXC Installer -->
|
<!-- Custom Controls for KPXC Installer -->
|
||||||
<Control Id="LaunchCheckBox" Type="CheckBox" X="80" Y="243" Width="100" Height="17" Property="LAUNCHAPPONEXIT" Hidden="yes" CheckBoxValue="1" Text="Launch KeePassXC">
|
<Control Id="LaunchCheckBox" Type="CheckBox" X="80" Y="243" Width="100" Height="17" Property="LAUNCHAPPONEXIT" Hidden="yes" CheckBoxValue="1" Text="Launch KeePassXC">
|
||||||
<Condition Action="show">NOT Installed</Condition>
|
<Condition Action="show">NOT Installed OR WIX_UPGRADE_DETECTED</Condition>
|
||||||
</Control>
|
</Control>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
|
|
||||||
|
@ -57,16 +57,24 @@
|
|||||||
</Component>
|
</Component>
|
||||||
|
|
||||||
<DirectoryRef Id="TARGETDIR">
|
<DirectoryRef Id="TARGETDIR">
|
||||||
<!-- Startmenu shortcut -->
|
<!-- Startmenu shortcuts -->
|
||||||
<Directory Id="ProgramMenuFolder">
|
<Directory Id="ProgramMenuFolder">
|
||||||
<Directory Id="ApplicationProgramsFolder" Name="KeePassXC">
|
<Directory Id="ApplicationProgramsFolder" Name="KeePassXC">
|
||||||
<Component Id="ApplicationShortcut" Guid="*">
|
<Component Id="ApplicationShortcuts" Guid="*">
|
||||||
<Shortcut Id="ApplicationStartMenuShortcut"
|
<Shortcut Id="ApplicationStartMenuShortcut"
|
||||||
Name="KeePassXC"
|
Name="KeePassXC"
|
||||||
Target="[#CM_FP_KeePassXC.exe]"
|
Target="[#CM_FP_KeePassXC.exe]"
|
||||||
WorkingDirectory="INSTALL_ROOT"/>
|
WorkingDirectory="INSTALL_ROOT"/>
|
||||||
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
|
<Shortcut Id="GettingStartedShortcut"
|
||||||
<RegistryValue Root="HKCU" Key="Software\KeePassXC" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
|
Name="KeePassXC - Getting Started"
|
||||||
|
Target="[#CM_FP_share.docs.KeePassXC_GettingStarted.html]"
|
||||||
|
WorkingDirectory="INSTALL_ROOT" />
|
||||||
|
<Shortcut Id="UserGuideShortcut"
|
||||||
|
Name="KeePassXC - User Guide"
|
||||||
|
Target="[#CM_FP_share.docs.KeePassXC_UserGuide.html]"
|
||||||
|
WorkingDirectory="INSTALL_ROOT" />
|
||||||
|
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall" />
|
||||||
|
<RegistryValue Root="HKCU" Key="Software\KeePassXC" Name="StartMenuShortcut" Type="integer" Value="1" KeyPath="yes"/>
|
||||||
</Component>
|
</Component>
|
||||||
</Directory>
|
</Directory>
|
||||||
</Directory>
|
</Directory>
|
||||||
@ -80,33 +88,46 @@
|
|||||||
Name="KeePassXC"
|
Name="KeePassXC"
|
||||||
Target="[#CM_FP_KeePassXC.exe]"
|
Target="[#CM_FP_KeePassXC.exe]"
|
||||||
WorkingDirectory="INSTALL_ROOT" />
|
WorkingDirectory="INSTALL_ROOT" />
|
||||||
|
<RemoveFile Id="RemoveDesktopIcon" Name="KeePassXC.lnk" On="uninstall" />
|
||||||
<RegistryValue Root="HKCU" Key="Software\KeePassXC" Name="DesktopShortcut" Type="integer" Value="1" KeyPath="yes"/>
|
<RegistryValue Root="HKCU" Key="Software\KeePassXC" Name="DesktopShortcut" Type="integer" Value="1" KeyPath="yes"/>
|
||||||
</Component>
|
</Component>
|
||||||
</Directory>
|
</Directory>
|
||||||
</DirectoryRef>
|
</DirectoryRef>
|
||||||
|
|
||||||
<Property Id="AUTOSTARTPROGRAM" Value="1" Secure="yes" />
|
<!-- Custom properties to control installation options -->
|
||||||
<Property Id="LAUNCHAPPONEXIT" Value="1" Secure="yes" />
|
<Property Id="LAUNCHAPPONEXIT" Value="1" Secure="yes" />
|
||||||
|
<Property Id="AUTOSTARTPROGRAM" Value="1" Secure="yes" />
|
||||||
|
<Property Id="AUTOSTARTPROGRAM_REGISTRY">
|
||||||
|
<RegistrySearch Id="AutoStartSearch" Root="HKCU" Key="Software\Microsoft\Windows\CurrentVersion\Run" Name="$(var.CPACK_PACKAGE_NAME)" Type="raw" />
|
||||||
|
</Property>
|
||||||
<Property Id="INSTALLDESKTOPSHORTCUT" Secure="yes" />
|
<Property Id="INSTALLDESKTOPSHORTCUT" Secure="yes" />
|
||||||
|
<Property Id="INSTALLDESKTOPSHORTCUT_REGISTRY">
|
||||||
|
<RegistrySearch Id="DesktopIconSearch" Root="HKCU" Key="Software\KeePassXC" Name="DesktopShortcut" Type="raw" />
|
||||||
|
</Property>
|
||||||
|
|
||||||
|
<!-- Set properties based on existing conditions, prevents changing state on upgrade -->
|
||||||
|
<SetProperty Id="AUTOSTARTPROGRAM" After="AppSearch" Value="">AUTOSTARTPROGRAM="0" OR (WIX_UPGRADE_DETECTED AND NOT AUTOSTARTPROGRAM_REGISTRY)</SetProperty>
|
||||||
|
<SetProperty Id="INSTALLDESKTOPSHORTCUT" After="AppSearch" Value="1">WIX_UPGRADE_DETECTED AND INSTALLDESKTOPSHORTCUT_REGISTRY</SetProperty>
|
||||||
|
<SetProperty Id="LicenseAccepted" After="AppSearch" Value="1">WIX_UPGRADE_DETECTED</SetProperty>
|
||||||
|
|
||||||
<FeatureRef Id="ProductFeature">
|
<FeatureRef Id="ProductFeature">
|
||||||
<ComponentRef Id="ApplicationShortcut" />
|
<ComponentRef Id="ApplicationShortcuts" />
|
||||||
<ComponentRef Id="Autostart" />
|
<ComponentRef Id="Autostart" />
|
||||||
<ComponentRef Id="DesktopShortcut" />
|
<ComponentRef Id="DesktopShortcut" />
|
||||||
</FeatureRef>
|
</FeatureRef>
|
||||||
|
|
||||||
|
<!-- Action to launch application after installer exits -->
|
||||||
<Property Id="WixShellExecTarget" Value="[#CM_FP_KeePassXC.exe]" />
|
<Property Id="WixShellExecTarget" Value="[#CM_FP_KeePassXC.exe]" />
|
||||||
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" />
|
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" />
|
||||||
|
|
||||||
<Property Id="WixSilentExecCmdLine" Value='"Taskkill" /IM KeePassXC.exe' />
|
<!-- Action to kill running KeePassXC processes -->
|
||||||
|
<Property Id="WixSilentExecCmdLine" Value='taskkill /IM KeePassXC.exe; taskkill /IM keepassxc-proxy.exe /F' />
|
||||||
<CustomAction Id="KillKeePassXC" BinaryKey="WixCA" DllEntry="WixSilentExec" Execute="immediate" Return="ignore" />
|
<CustomAction Id="KillKeePassXC" BinaryKey="WixCA" DllEntry="WixSilentExec" Execute="immediate" Return="ignore" />
|
||||||
|
|
||||||
<Property Id="WixQuietExecCmdLine" Value='"Taskkill" /IM keepassxc-proxy.exe /F' />
|
|
||||||
<CustomAction Id="KillProxy" BinaryKey="WixCA" DllEntry="WixQuietExec" Execute="immediate" Return="ignore" />
|
|
||||||
|
|
||||||
<InstallExecuteSequence>
|
<InstallExecuteSequence>
|
||||||
<Custom Action="KillKeePassXC" Before="InstallValidate" />
|
<Custom Action="KillKeePassXC" Before="InstallValidate" />
|
||||||
<Custom Action="KillProxy" Before="InstallValidate" />
|
<!-- Prevent pinned taskbar shortcut from being removed -->
|
||||||
|
<RemoveShortcuts Suppress="yes" />
|
||||||
</InstallExecuteSequence>
|
</InstallExecuteSequence>
|
||||||
</Product>
|
</Product>
|
||||||
</Wix>
|
</Wix>
|
||||||
|
Loading…
Reference in New Issue
Block a user