1.0.3 • Published 7 months ago

changeexe v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

changeexe

Change the icon and versioninfo of executable files. Fast. Easy.

installation

npm install changeexe

usage

const changeExe = require('changeexe');

change icon

(async () => { 
    await changeExe.icon('program.exe', 'icon.ico');
})();

change versioninfo

(async () => {
  await changeExe.versionInfo('program.exe', {
    CompanyName: 'Legit Tax Haven, LLC',
    FileDescription: 'An innocent file that will not harm your computer. Double-click to read more.',
    FileVersion: '1.3.3.7',
    LegalCopyright: 'Copyright 2021, all my rights are belong to me.',
    OriginalFilename: 'virus.exe',
    ProductName: 'Not A Virus',
    ProductVersion: '1.2.3.4'
  });
})();

both

(async () => {
  await changeExe.icon('program.exe', 'icon.ico');
  await changeExe.versionInfo('program.exe', {
    CompanyName: 'Legit Tax Haven, LLC',
    FileDescription: 'An innocent file that will not harm your computer. Double-click to read more.',
    FileVersion: '1.3.3.7',
    LegalCopyright: 'Copyright 2021, all my rights are belong to me.',
    OriginalFilename: 'virus.exe',
    ProductName: 'Not A Virus',
    ProductVersion: '1.2.3.4'
  });
})();
1.0.3

7 months ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago