0.1.2 • Published 9 years ago

exe-resource v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Exe Resource

Module allowing to modify resource properties of executable files (.dll, .exe, etc) on Windows.

Installing

npm install --save-dev exe-resource

Usage

First parameter is a path the the executable file, which details you try to modify.

Second parameter is an object, with properties that will be subsitituted in the executable. All properties all optional, but you have to provide at least one.

exeResource('Path to executable', {
  fileVersion: '1.2.3.4',
  productVersion: '1.2.3.4',
  companyName: 'MyCompany',
  fileDescription: 'The executable.',
  legalCopyright: 'Copyright...',
  productName: 'MyProduct'
});