Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Delphier authored Jun 8, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent f15f941 commit f2ff0f1
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
# dumpbin
# dumpbin.exe
Microsoft COFF Binary File Dumper - Extract from Visual Studio Community 2022
Download from [Releases](../../releases).

## Usage

This option displays all definitions exported from an executable file or DLL.
```
dumpbin.exe /exports *.dll
```

This option displays public symbols defined in a library.
```
dumpbin.exe /linkermember *.lib
```

Dumps the names of the DLLs from which the image imports functions. You can use the list to determine which DLLs to redistribute with your app, or find the name of a missing dependency.
```
dumpbin.exe /dependents *.exe
```

0 comments on commit f2ff0f1

Please sign in to comment.