List of DLLs loaded by specific process by its name

后端 未结 2 830
借酒劲吻你
借酒劲吻你 2021-01-19 04:27

I\'m trying to list dll(s) loaded to processe with the following code:

Process[] ObjModulesList = Process.GetProcessesByName(\"iexplore\");

foreach (Process         


        
2条回答
  •  [愿得一人]
    2021-01-19 05:02

    You have to compile you app with x64 target.

    Otherwise you can consult: http://www.codeproject.com/Articles/301/Display-Loaded-Modules-v

提交回复
热议问题