An open API service indexing awesome lists of open source software.

https://github.com/tmcdos/pe32-version

Getting file version of PE-32 EXE files
https://github.com/tmcdos/pe32-version

file-version pe32 windows-executable

Last synced: 3 months ago
JSON representation

Getting file version of PE-32 EXE files

Awesome Lists containing this project

README

          

# Getting file version of PE-32 EXE files

This small console utility takes as argument a path to EXE file (in Windows PE-32 format) and prints to STDOUT the file version from resource section (4 numbers delimited by dot)

I personally use this tool to implement auto-update of my desktop applications - the application sends a HTTP request to a REST API endpoint which invokes the tool (in a Linux environment) to get the version of the most recently deployed EXE. Then the application compares the response with its own version - and if it determines that there is a new version, it downloads the newer EXE and performs the auto-update.