|
StampVer - Win32 Version Resource StampingIntroductionStampVer was written to allow easy stamping of a build number into the version resource of a Win32 executable. This build number can be specified on the command line, or via a response file. If a response file is used, StampVer can autoincrement the version number contained it it. This can be useful if you are frequently passing application builds around and want something more definitive than file dates to determine which version someone has. Note that this works directly on the final EXE - as it does not make changes to your source files, your resources do not need to be recompiled. In other words, it's fast! History
Syntax and options
StampVer [options] <exefile>
-? displays this message
-f"1.2.3.4" stamp with specified file version number, e.g. -f"2.10.0.0"
-p"1.2.3.4" stamp with specified product version number, e.g. -p"2.10.0.0"
-v"<filename>" get version number from response file, e.g. -v"stampver.inf"
-i[1|2|3|4] preincrement file version number in response file
1,2,3,4 correspond to a element of the version number, so
to increment the minor version, use -i4. Useful for
auto-incrementing a build number.
-j[1|2|3|4] preincrement product version number in response file (as above).
-k keep original file timestamp
-nopad prevent padding of version strings with spaces.
-o[1|2|3|4] sets the amount of output produced:
-o1 errors only
-o2 show warnings
-o3 show informational messages
-o4 show verbose diagnostics
Quotes around parameters are optional unless the parameter contains spaces.
About StampVer response filesThe response file is a simple text file that contains the last version number that was applied. Here is an example:
;StampVer information file
FileVersion=1.0.0.4
ProductVersion=5.0.0.4
FileFormat=%a.%b.%c Build %04d
ProductFormat=%a.%b.%c Build %04d
The response file allows you to have separately maintained file and product numbers. If you do not wish to stamp either the file or product number, then simply ensure the response file does not contain that entry! The FileFormat and ProductFormat entries are optional, but if present they allow you to customise the format of the version strings. These entries are vaguely similar to printf format specs. The default is simply %a.%b.%c.%d. You can add zero padding to a field by specifying a zero followed by the required field width, e.g. %04d would expand to something like 0047. You can also embed date and time information into the version strings using strftime style format specs preceded by a %t. For example
FileFormat=%a.%b Build %04d (%td %tb)
would produce something like this:
1.23 Build 456 (23 Jan)
Here are some common strftime codes you could use:
%ta Abbreviated weekday name
%td Day of month (01-31)
%tj Day of year (001-366)
%tm Month (01-12)
%tb Abbreviated month name
%ty Year without century (00-99)
%tY Year with century
%tH Hour in 24-hour format (00-23)
%tM Minute (00-59)
%tS Second (00-59)
Check your C run time strftime documentation for others. Remember to insert the t though! If you specify a response file that doesn't exist, or do not specify one at all, one will be created for you in the current directory with the name stampver.inf Note that if you use the -f or -p options these will override any response file settings. Integrating with Microsoft Developer StudioYou can set up StampVer to autoincrement build numbers as part of your normal build process. Assuming that your EXE has a version resource, and StampVer is on the path, you simply set up a custom build step for the target. To do this, get the project settings dialog (Alt-F7), highlight the top level folder for a build, and select the Custom Build tab. Add a build command that looks like this:
StampVer -vstampver.inf -i4 -j4 $(TargetPath)
Set the output file to be the following:
$(WkspDir)dummy
These settings will store the version number in stampver.inf file in the workspace directory, and will autoincrement the version numbers contained in it before applying it to the FileVersion and ProductVersion elements of the target EXE. NOTE: Here an alternative technique, that will work no matter what StampVer options are used (the above only works with the -i or -j options, as they cause stampver.inf to be updated)
StampVer -vstampver.inf $(TargetPath)
echo stampver executed > "$(OutDir)\stampver.trg"
And set the output file to the following:
$(OutDir)\stampver.trg
This is a general purpose technique that can be used for any tool that doesn't produce an output file. FAQQ: StampVer complains that my application doesn't have a version
resource Q: StampVer says that there isn't enough space for the version
strings StampVer will pad version strings to their maximum length with spaces. This feature can be disabled with the -nopad option. This was added when it was found that Dev Studio 4.0 crashed when it tries to display the version resource for an EXE that StampVer has processed. Q: My incremental linker doesn't work anymore Note that from v1.4, StampVer will update the EXE/DLL checksum. The NT loader is picky about this for core system DLLs, and no doubt Win2000 will be too. StampVer uses the ImageHlp dll to perform this task. Q: How do I use StampVer with Visual Basic executables? The reason VB users report this 'bug' is that their projects get a version string of the form aaaa.bbbb.cccc. If you don't use a similar StampVer format spec, you can run into the 'not enough space for updated string' problem. So use a response file a bit like this...
;StampVer information file
FileVersion=1111.2222.3333.0
ProductVersion=1111.2222.3333.0
FileFormat=%a.%b.%c
ProductFormat=%a.%b.%c
DownloadStampVer is freeware, and comes with no warranty - you use it at your own risk. If you do experience problems, or have ideas for enhancements, please contact us stampver.zip 33kb (Win9x and NT) |
|||||||||||||||||||||||