diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-11-13 14:35:44 +0100 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-11-13 14:35:44 +0100 |
| commit | c1a75f70c7047dde60970f72656f9b7852669d36 (patch) | |
| tree | 2289768409899561485f78fd9d4f3b505e3646fd /packaging | |
| parent | 95cc2fd975348e7166422acd88c4cf0923282bb2 (diff) | |
| download | rabbitmq-server-git-c1a75f70c7047dde60970f72656f9b7852669d36.tar.gz | |
packaging/windows-exe: Append version to program name in "Add/Remove Programs"
There is already a key dedicated to the product version. But apparently,
this is not easy when automating things. Moreover, most aplications I
checked have the version appended to the product name so this is a
common practice.
Fixes #80.
Diffstat (limited to 'packaging')
| -rw-r--r-- | packaging/windows-exe/rabbitmq_nsi.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/windows-exe/rabbitmq_nsi.in b/packaging/windows-exe/rabbitmq_nsi.in index e594a6b26d..7aec1f1dc4 100644 --- a/packaging/windows-exe/rabbitmq_nsi.in +++ b/packaging/windows-exe/rabbitmq_nsi.in @@ -89,7 +89,7 @@ Section "RabbitMQ Server (required)" Rabbit WriteRegStr HKLM "SOFTWARE\VMware, Inc.\RabbitMQ Server" "Install_Dir" "$INSTDIR" ; Write the uninstall keys for Windows - WriteRegStr HKLM ${uninstall} "DisplayName" "RabbitMQ Server" + WriteRegStr HKLM ${uninstall} "DisplayName" "RabbitMQ Server %%VERSION%%" WriteRegStr HKLM ${uninstall} "UninstallString" "$INSTDIR\uninstall.exe" WriteRegStr HKLM ${uninstall} "DisplayIcon" "$INSTDIR\rabbitmq.ico" WriteRegStr HKLM ${uninstall} "Publisher" "Pivotal Software, Inc." |
