NSIS - put EXE version into name of installer
Posted
by codeulike
on Stack Overflow
See other posts from Stack Overflow
or by codeulike
Published on 2010-06-14T16:36:14Z
Indexed on
2010/06/14
19:42 UTC
Read the original article
Hit count: 255
nsis
NSIS has a Name variable that you define in the script:
Name "MyApp"
It defines the name of the installer, that gets displayed as the window title, etc.
Is there a way to pull the .NET Version number out of my main EXE and append it to the Name?
So that my installer name would automatically be 'MyApp V2.2.0.0" or whatever?
© Stack Overflow or respective owner