diff --git a/README.md b/README.md index 4b7c7e4..9a0d2dc 100644 --- a/README.md +++ b/README.md @@ -1 +1,20 @@ -# dumpbin \ No newline at end of file +# 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 +```