Command line tool to edit resources of exe
Перейти к файлу
Cody Tilkins ca7064eb01 Fix typo in README.md (#83) 2019-02-25 19:31:42 +09:00
src To future me 2018-10-01 10:48:28 +09:00
.appveyor.yml Fix the names of artifacts in appveyor 2017-09-26 14:40:26 +09:00
.editorconfig Add .editorconfig with two-space indents and Unix newlines 2016-01-29 00:36:37 -08:00
.gitignore Add x64 configuration 2017-09-13 15:02:08 +09:00
LICENSE Initial commit. 2013-11-05 19:31:48 +08:00
README.md Fix typo in README.md (#83) 2019-02-25 19:31:42 +09:00
rcedit.gyp Add help message 2017-09-25 11:57:11 +09:00
rcedit.sln Add x64 configuration 2017-09-13 15:02:08 +09:00
rcedit.vcxproj Add x64 configuration 2017-09-13 15:02:08 +09:00
rcedit.vcxproj.filters Require VS 2015 for building 2017-09-13 11:35:11 +09:00

README.md

rcedit Build status

Command line tool to edit resources of exe file on Windows.

Executables

Prebuilt binaries can be found in the artifacts of appveyor jobs.

Building

  1. Clone the repository
  2. Open rcedit.sln with Visual Studio 2015 or above
  3. Build

Generate solution files

If you have modified the gyp files, you should regenerate the solution files:

  1. Make sure you have gyp configured on your system. If not, clone gyp from https://chromium.googlesource.com/external/gyp
  2. Run gyp rcedit.gyp --depth .

Docs

Show help:

$ rcedit -h

Set version string:

$ rcedit "path-to-exe-or-dll" --set-version-string "Comments" "This is an exe"

Use this option to change any supported properties, as described in the MSDN documentation here

Set file version:

$ rcedit "path-to-exe-or-dll" --set-file-version "10.7"

Set product version:

$ rcedit "path-to-exe-or-dll" --set-product-version "10.7"

Set icon:

$ rcedit "path-to-exe-or-dll" --set-icon "path-to-ico"

Set resource string:

$ rcedit "path-to-exe-or-dll" --set-resource-string id_number "new string value"

Set requested execution level (asInvoker | highestAvailable | requireAdministrator) in the manifest:

$ rcedit "path-to-exe-or-dll" --set-requested-execution-level "requireAdministrator"

Set application manifest:

$ rcedit "path-to-exe-or-dll" --application-manifest ./path/to/manifest/file

And you can change multiple things in one command:

$ rcedit "path-to-exe-or-dll" --set-icon "path-to-ico" --set-file-version "10.7"

Get version string:

$ rcedit "path-to-exe-or-dll" --get-version-string "property"

Use the same properties as --set-version-string. Use "FileVersion" to get the results of --set-file-version and "ProductVersion" to get the results of --get-product-version.

Get resource string:

$ rcedit "path-to-exe-or-dll" --get-resource-string id_number