dumpbin工具的使用

我是猴子發表於2024-06-04

dumpbin工具的使用

當我們需要檢視一個dll或exe檔案中的包含的函式或是依賴的函式之類的資訊,可以使用Visual Studio自帶的工具dumpbin來實現,使用方法為:

1/ 啟動Visual Studio 命令列工具;

2/ 檢視匯出函式,執行

    dumpbin /exports (dll或者exe檔案路徑)

3/ 檢視依賴性,執行

    dumpbin /dependents (dll或者exe檔案路徑)

4/ 可以使用 /out:(檔名)引數將列印資訊輸出到文字檔案中。
在命令列工具裡執行:

dumpbin.exe /exports 'C:\Program Files\Microsoft Network Monitor 3\NMAPI.dll'

  ****必須要帶引號
引用:https://www.cnblogs.com/dadream/p/4100216.html



相關文章