Reputation: 31
I have my QT application and I use MSi to install int on particuler system. But on auto upgrade I am replacing application .exe. On successful update I want to update application version in control panel without using MSI. Thanks
Upvotes: 2
Views: 138
Reputation: 21248
As far as I know you have to edit the following Windows registry keys:
HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\<your_app_name>" "DisplayVersion" "<new_version>"
Upvotes: 1