On 2/2/2025 9:33 PM, T wrote:
Hi All,
Is there a file version api, like filever.exe to
read the embedded version of a file?
Many thanks,
-T
In version.dll. GetFileVersionInfoSize, GetFileVersionInfo
and VerQueryValue.
It's fairly involved. Assuming that you're not generally dealing
with Win32 API, you could use the much simpler VBScript
method:
Dim FSO, s
Set FSO = CreateObject("Scripting.FileSystemObject")
s = FSO.GetFileVersion("C:\Windows\system32\shell32.dll")
MsgBox s
Set FSO = Nothing
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)