Mawg
Mawg

Reputation: 40185

How to view output of OutputDebugString () across the network?

Further to my previous question, I find that I cannot use the GExpertsDebugWindow on a PC which did not previously have Delphi installed.

If I have the following (not unusal, so probably of interest to others) requirements, do I need to roll my own code or is there and existing and free solution?

  1. Must be able to read acorss the network (i.e., PC 1 monitors PC 2's debug output) by specifying PC 2's IP address
  2. If posible, I would like to be able to filter by process name

Thanks in advance for any help

Upvotes: 2

Views: 914

Answers (1)

Rob Kennedy
Rob Kennedy

Reputation: 163347

Microsoft's DebugView tool has those features. It can display OutputDebugString output, even from remote systems. Depending on other factors, it can even install itself remotely.

Upvotes: 3

Related Questions