We inherited some code, and there is a .bat file that references: c:\Keil\updatev167.exe -of=.\Version\BuildVersion.c -tf=.\Version\BuildNumber.tf I would like to know what application has updatev167.exe. Thanks!
Then, I don't know. Because of the filenames that are specified as parameters, this might be a tool to patch a build/release number during an automated project build (CI system). Check the content of the file BuildVersion.c and BuildNumber.tf and you should be able to find out.
BuildVersion.c => const unsigned short _BuildNumber_ = 2275;
BuildNumber.tf => const unsigned short _BuildNumber_ = <ATPRINT value="Build">;