Bhushan Dhawde
Bhushan Dhawde

Reputation: 31

How to update application version in control panel on auto_update using c++/QT

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

Answers (1)

vahancho
vahancho

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

Related Questions