Results 1 to 4 of 4

Thread: Program loading "peeker"

  1. #1
    Junior Member
    Join Date
    Jan 2004
    Posts
    12

    Program loading "peeker"

    Does such a program exist that allows the viewing of other programs as they boot? For example if i wanted to see the processes of a program as it loads, would it be possible load a seperate program to view the other program as it loads in the operating enviroment? I hope this makes sense to some people, since I'm curious to see how Windows handles software processes in real time...
    In silence man can most readily preserve his integrity

  2. #2
    AO Curmudgeon rcgreen's Avatar
    Join Date
    Nov 2001
    Posts
    2,716
    Sounds like what you need is a debugger.

    http://www.nuvisionmiami.com/books/asm/debug/

    It may be of limited use, though, because debuggers are primarily aimed
    at those who are writing their own software. When you compile a program
    the compiler includes, by default, all sorts of useful information to aid the debugger
    in analyzing the running of the program. But, when the software is released commercially,
    these debugging symbols are stripped out to reduce the size of the executable (and
    to keep people from reverse engineering the software).
    I came in to the world with nothing. I still have most of it.

  3. #3
    Banned
    Join Date
    Jul 2005
    Posts
    511
    In Windows it is apparantly possible to hook into the API, and thus redirect these API calls to your own functions. Thus, the CreateProcess API could be redirected to your own routine, which then logs some information and calls the System CreateProcess API to continue the processing of this process.
    But how this should be done? I don't have a clue. All I know is that on Windows, this could be done by an extremely experienced Kernel developer.

  4. #4
    Just Another Geek
    Join Date
    Jul 2002
    Location
    Rotterdam, Netherlands
    Posts
    3,401
    Have a look at the tools from Sysinternals..

    http://www.sysinternals.com/Processe...Utilities.html
    Oliver's Law:
    Experience is something you don't get until just after you need it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •