NSIS/Examples/VersionInfo.nsi
joostverburg d6fe533978 simple script
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2628 212acab6-be3b-0410-9dea-997c60f758d6
2003-06-10 19:32:19 +00:00

30 lines
No EOL
864 B
NSIS

; 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.
;--------------------------------
Name "Version Info"
OutFile "VersionInfo.exe"
;--------------------------------
;Version Information
VISetVersionLanguage 2057 1200 ; English UK
VIAddTranslation 2057 1200 ; English UK
VIProductVersion "1.2.3.4"
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" "© Fake company"
VIAddVersionKey "FileDescription" "Test Application"
VIAddVersionKey "FileVersion" "1.2.3"
;--------------------------------
Section ""
SectionEnd