diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-12-27 19:50:34 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-12-27 19:51:50 +0100 |
commit | 7fcd4bce715ea3618b6971a454e88eaad1a72298 (patch) | |
tree | f0f7335c6f1af9316ed04f0dbea65d5d2d067d17 /src/Release | |
parent | 68131ac91b4a5cab1cd080af823f4ba33fbbdbdd (diff) | |
download | VeraCrypt-7fcd4bce715ea3618b6971a454e88eaad1a72298.tar.gz VeraCrypt-7fcd4bce715ea3618b6971a454e88eaad1a72298.zip |
Windows (MSI install only): Fix double-clicking .hc file inserting %1 instead of volume name in UI path field when
Diffstat (limited to 'src/Release')
-rw-r--r-- | src/Release/Setup Files/Product64.wxs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Release/Setup Files/Product64.wxs b/src/Release/Setup Files/Product64.wxs index 15c846aa..2958bdea 100644 --- a/src/Release/Setup Files/Product64.wxs +++ b/src/Release/Setup Files/Product64.wxs @@ -1115,7 +1115,7 @@ <!-- MSI already removes all values and subkeys that it creates : no need to set Action="createAndRemoveOnUninstall" --> <RegistryKey Root="HKLM" Key="SOFTWARE\Classes\VeraCryptVolume\DefaultIcon" > - <RegistryValue Type="string" Value="[APPLICATIONROOTFOLDER]\VeraCrypt.exe,1" KeyPath="yes" /> + <RegistryValue Type="string" Value="[APPLICATIONROOTFOLDER]VeraCrypt.exe,1" KeyPath="yes" /> </RegistryKey> </Component> @@ -1126,7 +1126,7 @@ <!-- MSI already removes all values and subkeys that it creates : no need to set Action="createAndRemoveOnUninstall" --> <RegistryKey Root="HKLM" Key="SOFTWARE\Classes\VeraCryptVolume\Shell\open\command" > - <RegistryValue Type="string" Value=""[APPLICATIONROOTFOLDER]\VeraCrypt.exe" /v "%%1"" KeyPath="yes" /> + <RegistryValue Type="string" Value=""[APPLICATIONROOTFOLDER]VeraCrypt.exe" /v "%1"" KeyPath="yes" /> </RegistryKey> </Component> |