Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

opening a .exe file

Options
  • 22-02-2006 5: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 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 Posts: 1,421 ✭✭✭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 Posts: 6,508 ✭✭✭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