2003-06-10 19:32:19 +00:00
|
|
|
|
; VersionInfo.nsi
|
|
|
|
|
;
|
|
|
|
|
; This script shows you how to add version information to an installer.
|
|
|
|
|
; Windows shows this information on the Version tab of the File properties.
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
|
Name "Version Info"
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
|
OutFile "VersionInfo.exe"
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
;Version Information
|
2003-06-10 19:32:19 +00:00
|
|
|
|
|
2003-06-10 04:33:34 +00:00
|
|
|
|
VISetVersionLanguage 2057 1200 ; English UK
|
|
|
|
|
VIAddTranslation 2057 1200 ; English UK
|
2003-06-09 18:59:14 +00:00
|
|
|
|
VIProductVersion "1.2.3.4"
|
2003-06-10 19:32:19 +00:00
|
|
|
|
VIAddVersionKey "ProductName" "Test Application"
|
|
|
|
|
VIAddVersionKey "Comments" "A test comment"
|
|
|
|
|
VIAddVersionKey "CompanyName" "Fake company"
|
|
|
|
|
VIAddVersionKey "LegalTrademarks" "Test Application is a trademark of Fake company"
|
|
|
|
|
VIAddVersionKey "LegalCopyright" "<EFBFBD> Fake company"
|
|
|
|
|
VIAddVersionKey "FileDescription" "Test Application"
|
2003-06-10 04:33:34 +00:00
|
|
|
|
VIAddVersionKey "FileVersion" "1.2.3"
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
|
Section ""
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
|
SectionEnd
|