Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Search for a string in a collection of dlls

We have a number of dlls in a single directory. Most, but not all, are C++ resource dlls only. These dlls can be opened in Visual Studio for a "visual" inspection (you can see the "String Table").

Here's the scenario, we are looking for a particular string but we don't which DLL contains the string. Is there a tool that we can use that will perform a string search on DLLs?

Thanks!

like image 458
Ian Avatar asked Sep 01 '25 21:09

Ian


1 Answers

You can use the findstr command to search strings in several files.

like image 186
Frédéric Hamidi Avatar answered Sep 04 '25 08:09

Frédéric Hamidi