English 中文(简体)
与方案相关的所有批量档案清单
原标题:list of all dll files associated with a program
  • 时间:2011-11-21 07:56:12
  •  标签:
  • windows-7

我正在提出实用申请,其中我需要介绍有关运行方案的信息。

请告诉我,如何查阅与选定方案档案相关的号>文件。

问题回答

现有一些公用事业已经向您提供这一信息:

  • Dependency Walker can tell you which DLL s are needed by an executable
  • Process Explorer gives can give you all the DLL s currently being used by a process

如果你想用自己的用途来做到这一点,你就应当利用以下视窗功能:

  • Use OpenProcess to get the process handle of a running process with a known process id
  • use EnumProcessModules to loop over all modules (EXE+DLL s) of the process
  • in the loop function, use GetModuleBaseNameA or GetModuleFileNameEx to get the module name (file name)




相关问题
Migrating to Windows 7 - How will this impact my software?

I want to migrate to Windows 7 from XP, and I have some questions: Will Oracle 10g and SQL Server 2008 work? Will my C# programming (in Visual Studio 2003, 2005 and 2008) work? Do I need to do ...

Gvim, MinGW and Powershell making them work the CLI way

Just shifted to windows7. Liking it :). Is there a way to install MinGW in windows, such that, i can cd to my code directory (which is different from MinGW install directory) and compile my code there....

Log my battery performance on netbook [closed]

Which Windows API (Windows Xp and Window 7) do I use to log my battery performance on netbook? I want to write an app which can graph the watt vs time. I always run a select few apps on the netbook. ...

Win7: Replacing a driver without reboot

I m debugging an audio driver under Windows 7. When I need to replace it with an updated version, I have to reboot the system because a copy of current driver under DriverStore is locked despite the ...

What is the exact architecture/components of MinWin?

I ve always wanted a minimal windows NT build . Sounds like one s already there : MinWin. Can anyone tell me the exact design or architecture of MinWin and is it used in Windows 7 ? Windows Server ...

Windows 7 breadcrumbs in jQuery?

I could have swore I have seen this before, but has anyone the Windows 7 breadcrumb feature done in jQuery?

Display progress bar in the program s task bar icon

I was seeing that when you do somethings at Windows 7 that haves a progress bar, things like downloading a file. You can see that in the programs bar, at the icon of the application, there is the ...

热门标签