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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

opening a .exe file

  • 22-02-2006 4: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,423 ✭✭✭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,571 ✭✭✭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