diff options
author | Simon MacMullen <simon@rabbitmq.com> | 2013-07-03 17:37:53 +0100 |
---|---|---|
committer | Simon MacMullen <simon@rabbitmq.com> | 2013-07-03 17:37:53 +0100 |
commit | ac666e08c5405aa0b4e27a7edaaaf05d60e1e55e (patch) | |
tree | 70b2596e9f07baf1e7aa02d311ecd9e1e5395c3e | |
parent | 585f4bd75d82b65ffc5ce962fa51654ab8f4d044 (diff) | |
download | rabbitmq-server-ac666e08c5405aa0b4e27a7edaaaf05d60e1e55e.tar.gz |
Revert changes to the registry key "HKLM\Software\VMware, Inc.\RabbitMQ Server", which we want to keep constant.
-rw-r--r-- | packaging/windows-exe/rabbitmq_nsi.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/windows-exe/rabbitmq_nsi.in b/packaging/windows-exe/rabbitmq_nsi.in index 7ba4d17d..2ab8eee7 100644 --- a/packaging/windows-exe/rabbitmq_nsi.in +++ b/packaging/windows-exe/rabbitmq_nsi.in @@ -24,7 +24,7 @@ InstallDir "$PROGRAMFILES\RabbitMQ Server" ; Registry key to check for directory (so if you install again, it will ; overwrite the old one automatically) -InstallDirRegKey HKLM "Software\GoPivotal, Inc.\RabbitMQ Server" "Install_Dir" +InstallDirRegKey HKLM "Software\VMware, Inc.\RabbitMQ Server" "Install_Dir" ; Request application privileges for Windows Vista RequestExecutionLevel admin @@ -77,7 +77,7 @@ Section "RabbitMQ Server (required)" Rabbit File "rabbitmq.ico" ; Write the installation path into the registry - WriteRegStr HKLM "SOFTWARE\GoPivotal, Inc.\RabbitMQ Server" "Install_Dir" "$INSTDIR" + WriteRegStr HKLM "SOFTWARE\VMware, Inc.\RabbitMQ Server" "Install_Dir" "$INSTDIR" ; Write the uninstall keys for Windows WriteRegStr HKLM ${uninstall} "DisplayName" "RabbitMQ Server" @@ -151,7 +151,7 @@ Section "Uninstall" ; Remove registry keys DeleteRegKey HKLM ${uninstall} - DeleteRegKey HKLM "SOFTWARE\GoPivotal, Inc.\RabbitMQ Server" + DeleteRegKey HKLM "SOFTWARE\VMware, Inc.\RabbitMQ Server" ; TODO these will fail if the service is not installed - do we care? ExpandEnvStrings $0 %COMSPEC% |