All Projects → vweevers → Win Version Info

vweevers / Win Version Info

Licence: mit
Windows-only native addon to read version info from executables.

Projects that are alternatives of or similar to Win Version Info

Dissection
The dissection of a simple "hello world" ELF binary.
Stars: ✭ 427 (+8440%)
Mutual labels:  pe
Popcorn Api
Popcorn Time is a multi-platform, free software BitTorrent client that includes an integrated media player. Compatible API Anime/Movies/Show Scrapper
Stars: ✭ 529 (+10480%)
Mutual labels:  metadata
Amber
Reflective PE packer.
Stars: ✭ 594 (+11780%)
Mutual labels:  pe
Music Metadata
Stream and file based music metadata parser for node. Supporting a wide range of audio and tag formats.
Stars: ✭ 455 (+9000%)
Mutual labels:  metadata
Multiscanner
Modular file scanning/analysis framework
Stars: ✭ 494 (+9780%)
Mutual labels:  metadata
Exif Py
Easy to use Python module to extract Exif metadata from digital image files.
Stars: ✭ 561 (+11120%)
Mutual labels:  metadata
Specs
Technical specifications and guidelines for implementing Frictionless Data.
Stars: ✭ 403 (+7960%)
Mutual labels:  metadata
Hama.bundle
Plex HTTP Anidb Metadata Agent (HAMA)
Stars: ✭ 740 (+14700%)
Mutual labels:  metadata
Metadata Extractor Dotnet
Extracts Exif, IPTC, XMP, ICC and other metadata from image, video and audio files
Stars: ✭ 518 (+10260%)
Mutual labels:  metadata
Goblin
An impish, cross-platform binary parsing crate, written in Rust
Stars: ✭ 591 (+11720%)
Mutual labels:  pe
Rv8
RISC-V simulator for x86-64
Stars: ✭ 476 (+9420%)
Mutual labels:  metadata
Fatt
FATT /fingerprintAllTheThings - a pyshark based script for extracting network metadata and fingerprints from pcap files and live network traffic
Stars: ✭ 490 (+9700%)
Mutual labels:  metadata
Musicrepair
Fixes music metadata and adds album art.
Stars: ✭ 566 (+11220%)
Mutual labels:  metadata
Exifr
📷 The fastest and most versatile JS EXIF reading library.
Stars: ✭ 448 (+8860%)
Mutual labels:  metadata
Conventional Changelog
Generate changelogs and release notes from a project's commit messages and metadata.
Stars: ✭ 5,962 (+119140%)
Mutual labels:  metadata
Bearparser
Portable Executable parsing library (from PE-bear)
Stars: ✭ 415 (+8200%)
Mutual labels:  pe
Marquez
Collect, aggregate, and visualize a data ecosystem's metadata
Stars: ✭ 530 (+10500%)
Mutual labels:  metadata
Carpenters
Digital preservation workflow utility
Stars: ✭ 5 (+0%)
Mutual labels:  metadata
Manalyze
A static analyzer for PE executables.
Stars: ✭ 701 (+13920%)
Mutual labels:  pe
Rop Tool
A tool to help you write binary exploits
Stars: ✭ 590 (+11700%)
Mutual labels:  pe

win-version-info

Windows-only native addon to read version info from executables. A noop on other platforms.

npm status AppVeyor build status Dependency status JavaScript Style Guide

Example

const vi = require('win-version-info')
console.log(vi(process.argv[2]))
> node example "C:\Program Files (x86)\Firefox Developer Edition\firefox.exe"
{ FileVersion: '46.0.0.5903',
  LegalCopyright: '©Firefox and Mozilla Developers; available under the MPL 2 license.',
  CompanyName: 'Mozilla Corporation',
  FileDescription: 'FirefoxDeveloperEdition',
  ProductVersion: '46.0a2',
  InternalName: 'FirefoxDeveloperEdition',
  LegalTrademarks: 'Firefox is a Trademark of The Mozilla Foundation.',
  OriginalFilename: 'firefox.exe',
  ProductName: 'FirefoxDeveloperEdition',
  BuildID: '20160229004006' }

Install

With npm do:

npm install win-version-info

License

MIT © 2016-present Vincent Weevers. The main body of this project comes from ShowVer © Ted Peck 2002. Converting between UTF-16 and UTF-8 made possible by UTF8Conversion (Apache License 2.0) © 2011 Giovanni Dicanio.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].