VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2021-12-27 19:50:34 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2021-12-27 19:51:50 +0100
commit7fcd4bce715ea3618b6971a454e88eaad1a72298 (patch)
treef0f7335c6f1af9316ed04f0dbea65d5d2d067d17
parent68131ac91b4a5cab1cd080af823f4ba33fbbdbdd (diff)
downloadVeraCrypt-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
-rw-r--r--src/Release/Setup Files/Product64.wxs4
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="&quot;[APPLICATIONROOTFOLDER]\VeraCrypt.exe&quot; /v &quot;%%1&quot;" KeyPath="yes" />
+ <RegistryValue Type="string" Value="&quot;[APPLICATIONROOTFOLDER]VeraCrypt.exe&quot; /v &quot;%1&quot;" KeyPath="yes" />
</RegistryKey>
</Component>