NSIS获取文件版本信息,nsis,版本信息
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
!include "FileVerInfo.nsh" Name "GetFileVerInfo" Caption "$(^Name)" OutFile "GetFileVerInfo.exe" XPStyle on Function .onGUIInit StrCpy $0 "文件 $WINDIR\notepad.exe 的版本信息:$\r$\n" ${GetProductName} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 产品名称 (ProductName): $R0" ${GetComments} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 备注 (Comments): $R0" ${GetCompanyName} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 公司 (CompanyName): $R0" ${GetLegalCopyright} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 版权 (LegalCopyright): $R0" ${GetFileDescription} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 描述 (FileDescription): $R0" ${GetFileVersion} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 文件版本 (FileVersion): $R0" ${GetProductVersion} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 产品版本 (ProductVersion): $R0" ${GetInternalName} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 内部名称 (InternalName): $R0" ${GetLegalTrademarks} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 合法商标 (LegalTrademarks): $R0" ${GetOriginalFilename} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 源文件名 (OriginalFilename): $R0" ${GetPrivateBuild} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 个人用内部版本说明 (PrivateBuild): $R0" ${GetSpecialBuild} "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - 特殊内部版本说明 (SpecialBuild): $R0" ${GetUserDefined} "ProductBuild" "$WINDIR\notepad.exe" $R0 StrCpy $0 "$0$\r$\n - ProductBuild (自定义版本名): $R0" MessageBox MB_OK|MB_ICONINFORMATION $0 Quit FunctionEnd Section -Main SectionEnd |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=1255