-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |