Skip to content

Commit

Permalink
Better doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Nov 6, 2013
1 parent 906358f commit 00b44e9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,29 @@ Command line tool to edit resources of exe file on Windows
Set version string:

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

Set file version:

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

Set product version:

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

Set icon:

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

And you can change multiple things in one command:

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

0 comments on commit 00b44e9

Please sign in to comment.