Click here to Skip to main content
15,886,537 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How we can read .exe file in vbscript. I need to search a specific word in exe file.
Posted

1 solution

You cannot easily do this, even in code. An exe file is in a format specific to the platform it runs on, and any strings in the original source code may or may not be recognisable in the object. The best you can do is scan the file byte by byte looking for the pattern that you want.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900