Node module to edit resources of Windows executables.
- Clone the repository
- Run
npm install - Run
npm testto run the tests
var rcedit = require('rcedit')On platforms other than Windows, you will need to have Wine 1.6 or later installed and in the system path.
exePath is the path to the Windows executable to be modified.
options is an object that can contain following fields:
version-string- An object containing properties to change theexePath's version string.file-version- File's version to change to.product-version- Product's version to change to.icon- Path to the icon file (.ico) to set as theexePath's default icon.
callback is the Function called when the command completes. The function
signature is function (error).