在构建过程中,我需要为所有已编译的二进制文件设置版本信息。有些二进制文件已经具有版本信息(在编译时添加),而有些则没有。
我希望能够应用以下信息:
- 公司名
- 版权声明
- 产品名称
- 产品描述
- 文件版本
- 产品版本
所有这些属性均由构建脚本指定,并且必须在编译后应用。这些是使用C ++ Builder 2007编译的标准二进制文件(不是程序集)。
我怎样才能做到这一点?
在构建过程中,我需要为所有已编译的二进制文件设置版本信息。有些二进制文件已经具有版本信息(在编译时添加),而有些则没有。
我希望能够应用以下信息:
所有这些属性均由构建脚本指定,并且必须在编译后应用。这些是使用C ++ Builder 2007编译的标准二进制文件(不是程序集)。
我怎样才能做到这一点?
Answers:
虽然这不是批处理过程,但Visual Studio也可以添加/编辑文件资源。
只需在.EXE或.DLL上使用File-> Open-> File。这对于在构建后修复版本信息或将其添加到没有这些资源的文件中非常方便。
与许多其他答案不同,该解决方案使用完全免费的软件。
首先,创建一个Resources.rc
像这样的文件:
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
{
BLOCK "StringFileInfo"
{
BLOCK "040904b0"
{
VALUE "CompanyName", "ACME Inc.\0"
VALUE "FileDescription", "MyProg\0"
VALUE "FileVersion", "1.0.0.0\0"
VALUE "LegalCopyright", "© 2013 ACME Inc. All Rights Reserved\0"
VALUE "OriginalFilename", "MyProg.exe\0"
VALUE "ProductName", "My Program\0"
VALUE "ProductVersion", "1.0.0.0\0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x409, 1200
}
}
GoRC /fo Resources.res Resources.rc
(请参阅以下我的评论以获取的镜像GoRC.exe
)
然后使用Resource Hacker在CLI模式下将其添加到现有的.exe
:
ResHacker -add MyProg.exe, MyProg.exe, Resources.res,,,
而已!
ResourceHacker.exe -open Source.dll -save Changed.dll -action addoverwrite -resource Version.res
此外,ResourceHacker可以自行编译.rc文件:ResourceHacker.exe -open Version.rc -save Version.res -action compile
rcedit是相对较新的,并且可以从命令行正常运行:https : //github.com/atom/rcedit
$ rcedit "path-to-exe-or-dll" --set-version-string "Comments" "This is an exe"
$ rcedit "path-to-exe-or-dll" --set-file-version "10.7"
$ rcedit "path-to-exe-or-dll" --set-product-version "10.7"
那这样的东西呢?
verpatch /va foodll.dll %VERSION% %FILEDESCR% %COMPINFO% %PRODINFO% %BUILDINFO%
/va /pv
选项)。该版本在Windows资源管理器中正确显示,但是使用检索代码时缺少最后一个字符VerQueryValue
。要修复不良资源,我这样做:(1)在Resource Hacker中加载DLL。(2)查看版本资源。(3)编译(修改某些内容然后将其更改回启用按钮)。(4)保存。
有这个工具ChangeVersion [1]
功能列表(来自网站):
- 命令行界面
- 支持.EXE,.DLL和.RES文件
- 根据版本掩码更新FileVersion和ProductVersion
- 添加/更改/删除版本密钥字符串
- 调整文件标志(调试,特殊,私有等)
- 更新项目文件(.bdsproj | .bpr | .bpk | .dproj)
- 添加/更改主应用程序图标
- 使用ini文件进行配置
- Windows Vista支持(需要提升)
- 易于集成到连续构建环境中
完全披露:我认识写这个工具的人,我曾经和他一起工作。但这也意味着我知道他制作了高质量的软件;)
[1]链接无效。在download.cnet.com上似乎存在镜像版本。
"Change Version v2012.9.6.0 - (C)2007-2012 The-Software-Box.com This trial version has expired"
我正在使用其他工具。我刚刚将以下文件添加到我的Win32应用程序项目中。
一个头文件定义了一些常量,这些常量使我们无法在资源文件甚至程序代码上重用。我们只需要维护一个文件。由于Qt团队向我展示了如何在Qt项目上进行操作,因此它现在也可以在我的Win32应用程序上使用。
---- [version.h] ----
#ifndef VERSION_H
#define VERSION_H
#define VER_FILEVERSION 0,3,0,0
#define VER_FILEVERSION_STR "0.3.0.0\0"
#define VER_PRODUCTVERSION 0,3,0,0
#define VER_PRODUCTVERSION_STR "0.3.0.0\0"
#define VER_COMPANYNAME_STR "IPanera"
#define VER_FILEDESCRIPTION_STR "Localiza archivos duplicados"
#define VER_INTERNALNAME_STR "MyProject"
#define VER_LEGALCOPYRIGHT_STR "Copyright 2016 ipanera@gmail.com"
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
#define VER_ORIGINALFILENAME_STR "MyProject.exe"
#define VER_PRODUCTNAME_STR "My project"
#define VER_COMPANYDOMAIN_STR "www.myurl.com"
#endif // VERSION_H
---- [MyProjectVersion.rc] ----
#include <windows.h>
#include "version.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", VER_COMPANYNAME_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", VER_INTERNALNAME_STR
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "ProductName", VER_PRODUCTNAME_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
#include <windows.h>
在resource.h
自动添加的文件中包含该行。该文件不会重新生成(请注意,.rc文件顶部表示已生成代码,可以在设计器中对其进行修改)。
verpatch很好,但是不能处理unicode字符...请
尝试ResourceLib
有多种工具,有很多很好的答案,我将选择其中一种。
我从[AngusJ]:Resource Hacker下载了最新版本(5.1.7)。所有需要的信息都可以在该页面上找到(命令行选项,脚本等)。在以下演练中,我将对2个可执行文件(实验鼠)进行操作(出于明显的原因),这些文件已复制到cwd中:
在继续之前,我想提一下ResourceHacker有一个有趣的终端输出,并且以下复制/粘贴片段可能会引起一些混乱。
这更像是一个初步步骤,了解环境,表明没有时髦的生意在进行,...
e:\Work\Dev\StackOverflow\q000284258> sopr.bat *** Set shorter prompt to better fit when pasted in StackOverflow (or other) pages *** [prompt]> dir Volume in drive E is Work Volume Serial Number is 3655-6FED Directory of e:\Work\Dev\StackOverflow\q000284258 2019-01-28 20:09 <DIR> . 2019-01-28 20:09 <DIR> .. 2016-11-03 09:17 5,413,376 cmake.exe 2019-01-03 02:06 5,479,424 ResourceHacker.exe 2019-01-28 20:30 496 ResourceHacker.ini 3 File(s) 10,893,296 bytes 2 Dir(s) 103,723,261,952 bytes free [prompt]> set PATH=%PATH%;c:\Install\x64\CMake\CMake\3.6.3\bin [prompt]> .\cmake --help >nul 2>&1 [prompt]> echo %errorlevel% 0 [prompt]> .\ResourceHacker.exe -help [prompt]> ================================== Resource Hacker Command Line Help: ================================== -help : displays these abbreviated help instructions. -help commandline : displays help for single commandline instructions -help script : displays help for script file instructions. [prompt]> echo %errorlevel% 0
如图所示,可执行文件可以正常运行,它们的详细信息(我们关心的)如下所示:
资源文件是包含资源的文本文件。资源(简体)具有:
有关更多详细信息,请检查[MS.Docs]:关于资源文件。有许多工具(在现有答案中提到)可以简化资源文件的编辑,例如:
但是,由于它与Resource Hacker有关,并且:
我将在步骤(-action extract
)中使用它
接下来,为了将资源嵌入到.exe(.dll,...)中,必须将其编译为适合PE格式的二进制形式。同样,有许多工具可以实现这一目标,但是您可能已经猜到我会坚持使用Resource Hacker(-action compile
)。
[prompt]> :: Extract the resources into a file [prompt]> .\ResourceHacker.exe -open .\ResourceHacker.exe -save .\sample.rc -action extract -mask VersionInfo,, -log con [prompt]> [28 Jan 2019, 20:58:03] Current Directory: e:\Work\Dev\StackOverflow\q000284258 Commandline: .\ResourceHacker.exe -open .\ResourceHacker.exe -save .\sample.rc -action extract -mask VersionInfo,, -log con Open : e:\Work\Dev\StackOverflow\q000284258\ResourceHacker.exe Save : e:\Work\Dev\StackOverflow\q000284258\sample.rc Success! [prompt]> :: Modify the resource file and set our own values [prompt]> [prompt]> :: Compile the resource file [prompt]> .\ResourceHacker.exe -open .\sample.rc -save .\sample.res -action compile -log con [prompt]> [28 Jan 2019, 20:59:51] Current Directory: e:\Work\Dev\StackOverflow\q000284258 Commandline: .\ResourceHacker.exe -open .\sample.rc -save .\sample.res -action compile -log con Open : e:\Work\Dev\StackOverflow\q000284258\sample.rc Save : e:\Work\Dev\StackOverflow\q000284258\sample.res Compiling: e:\Work\Dev\StackOverflow\q000284258\sample.rc Success! [prompt]> dir /b cmake.exe ResourceHacker.exe ResourceHacker.ini sample.rc sample.res
在您的情况下,无需保存和编辑资源文件,因为该文件已经存在,我只是出于演示目的进行了此操作。下面是修改后(因此在编译之前)的资源文件。
sample.rc:
1 VERSIONINFO
FILEVERSION 3,1,4,1592
PRODUCTVERSION 2,7,1,8
FILEOS 0x4
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
{
VALUE "CompanyName", "Cristi Fati\0"
VALUE "FileDescription", "20190128 - SO q000284258 demo\0"
VALUE "FileVersion", "3.1.4.1592\0"
VALUE "ProductName", "Colonel Panic\0"
VALUE "InternalName", "100\0"
VALUE "LegalCopyright", "(c) Cristi Fati 1999-2999\0"
VALUE "OriginalFilename", "ResHack\0"
VALUE "ProductVersion", "2.7.1.8\0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409 0x04E4
}
}
这也将由Resource Hacker(-action addoverwrite
)执行。由于.exe已被复制,因此我将就地编辑它们的资源。
[prompt]> .\ResourceHacker.exe -open .\cmake.exe -save .\cmake.exe -res .\sample.res -action addoverwrite -mask VersionInfo,, -log con [prompt]> [28 Jan 2019, 21:17:19] Current Directory: e:\Work\Dev\StackOverflow\q000284258 Commandline: .\ResourceHacker.exe -open .\cmake.exe -save .\cmake.exe -res .\sample.res -action addoverwrite -mask VersionInfo,, -log con Open : e:\Work\Dev\StackOverflow\q000284258\cmake.exe Save : e:\Work\Dev\StackOverflow\q000284258\cmake.exe Resource: e:\Work\Dev\StackOverflow\q000284258\sample.res Added: VERSIONINFO,1,1033 Success! [prompt]> copy ResourceHacker.exe ResourceHackerTemp.exe 1 file(s) copied. [prompt]> .\ResourceHackerTemp.exe -open .\ResourceHacker.exe -save .\ResourceHacker.exe -res .\sample.res -action addoverwrite -mask VersionInfo,, -log con [prompt]> [28 Jan 2019, 21:19:29] Current Directory: e:\Work\Dev\StackOverflow\q000284258 Commandline: .\ResourceHackerTemp.exe -open .\ResourceHacker.exe -save .\ResourceHacker.exe -res .\sample.res -action addoverwrite -mask VersionInfo,, -log con Open : e:\Work\Dev\StackOverflow\q000284258\ResourceHacker.exe Save : e:\Work\Dev\StackOverflow\q000284258\ResourceHacker.exe Resource: e:\Work\Dev\StackOverflow\q000284258\sample.res Modified: VERSIONINFO,1,1033 Success! [prompt]> del /f /q ResourceHackerTemp.* [prompt]> dir Volume in drive E is Work Volume Serial Number is 3655-6FED Directory of e:\Work\Dev\StackOverflow\q000284258 2019-01-28 21:20 <DIR> . 2019-01-28 21:20 <DIR> .. 2016-11-03 09:17 5,414,400 cmake.exe 2019-01-03 02:06 5,479,424 ResourceHacker.exe 2019-01-28 21:17 551 ResourceHacker.ini 2019-01-28 20:05 1,156 sample.rc 2019-01-28 20:59 792 sample.res 5 File(s) 10,896,323 bytes 2 Dir(s) 103,723,253,760 bytes free
如所看到的,我不得不花点功夫(gainarie),因为在使用过程中我无法(至少我认为我不能)修改.exe。
这是一个可选阶段,以确保:
[prompt]> .\cmake --help >nul 2>&1 [prompt]> echo %errorlevel% 0 [prompt]> .\ResourceHacker.exe -help [prompt]> ================================== Resource Hacker Command Line Help: ================================== -help : displays these abbreviated help instructions. -help commandline : displays help for single commandline instructions -help script : displays help for script file instructions. [prompt]> echo %errorlevel% 0
及其详细信息:
有来自Heaventools软件的Resource Tuner Console。
Resource Tuner Console是一个命令行工具,使开发人员可以自动编辑大量Windows 32位和64位可执行文件中的不同资源类型。
有关更多详细信息,请特别参阅“ 更改版本变量和更新版本信息”页面。
@DannyBeckett 的上述回答对我有很大帮助,
我将以下内容放入批处理文件中,并将其放置在ResourceHacker.exe和要处理的EXE所在的文件夹中,并且效果很好。[您可以根据需要对其进行编辑]
@echo off
:start1
set /p newVersion=Enter version number [?.?.?.?]:
if "%newVersion%" == "" goto start1
:start2
set /p file=Enter EXE name [for 'program.exe' enter 'program']:
if "%file%" == "" goto start2
for /f "tokens=1-4 delims=." %%a in ('echo %newVersion%') do (set ResVersion=%%a,%%b,%%c,%%d)
(
echo:VS_VERSION_INFO VERSIONINFO
echo: FILEVERSION %ResVersion%
echo: PRODUCTVERSION %ResVersion%
echo:{
echo: BLOCK "StringFileInfo"
echo: {
echo: BLOCK "040904b0"
echo: {
echo: VALUE "CompanyName", "MyCompany\0"
echo: VALUE "FileDescription", "TestFile\0"
echo: VALUE "FileVersion", "%newVersion%\0"
echo: VALUE "LegalCopyright", "COPYRIGHT © 2019 MyCompany\0"
echo: VALUE "OriginalFilename", "%file%.exe\0"
echo: VALUE "ProductName", "Test\0"
echo: VALUE "ProductVersion", "%newVersion%\0"
echo: }
echo: }
echo: BLOCK "VarFileInfo"
echo: {
echo: VALUE "Translation", 0x409, 1200
echo: }
echo:}
) >Resources.rc && echo setting Resources.rc
ResourceHacker.exe -open resources.rc -save resources.res -action compile -log CONSOLE
ResourceHacker -open "%file%.exe" -save "%file%Res.exe" -action addoverwrite -resource "resources.res" -log CONSOLE
ResourceHacker.exe -open "%file%Res.exe" -save "%file%Ico.exe" -action addskip -res "%file%.ico" -mask ICONGROUP,MAINICON, -log CONSOLE
xCopy /y /f "%file%Ico.exe" "%file%.exe"
echo.
echo.
echo your compiled file %file%.exe is ready
pause
[作为说明,我也使用资源黑客来编译res文件,而不是GoRC]
UpdateResource
功能,如果现有pe中的任务更新版本