Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

opening a .exe file

  • 22-02-2006 05:23PM
    #1
    Closed Accounts Posts: 27


    does anybody know how to open a .exe file of a windows application in program files to view the ID of the files it holds?


Comments

  • Registered Users, Registered Users 2 Posts: 4,188 ✭✭✭pH


    Not sure about the IDs of the files it holds, but a resource editor will open a windows executable and allow you play with any internal resources.

    http://www.wilsonc.demon.co.uk/d10resourceeditor.htm


  • Registered Users, Registered Users 2 Posts: 1,430 ✭✭✭Merrion


    You can see what dynamic link libraries it imports, if that is what you are after. There's an article I wrote (aimed at VB programmers) about the strutcure of the windows .exe file on TheCodePROJECT


  • Registered Users, Registered Users 2 Posts: 6,651 ✭✭✭daymobrew


    Merrion wrote:
    You can see what dynamic link libraries it imports
    # List the DLLs (or is it functions) used by an exe file.
    # This description is probably wrong - check dumpbin /help
    dumpbin /imports FileName.exe
    
    # List the functions exported by a DLL
    dumpbin /exports FileName.dll
    


Advertisement