Reputation: 225
It is possible to remove or hide AppVersion
from installation?
I don't want to see Version of program in "Program and Features" after installation.
Upvotes: 2
Views: 1423
Reputation: 202594
Set AppVersion
empty (or delete the line, as the directive is empty by default).
But, then you have to set the AppVerName
. Depending on your needs, either set it to My Program 1.0
; or if you do not want to see a version number in the installer itself and the Name column either, set it to My Program
only.
[Setup]
AppVersion=
AppVerName=My Program
Upvotes: 7
Reputation: 91
You must specify the directive UninstallDisplayName on [Setup] section.
Otherwise the default value is AppVerName
[Setup]
AppVersion=1.0
UninstallDisplayName=My Program
Upvotes: 0