views:

15

answers:

1

As part of my app, my users install a Window Service (msi file written in C#) that uploads data to me. These Windows servers are usually behind all kinds of firewalls etc. and run by IT staff so it's difficult to get in touch with anyone to debug.

What can I put inside my application that would make it easier to figure out things? I'm not looking to do anything that would be considered "shady" but here are some ideas I've thought:

  • Open log files that are relevant to me in a separate thread and stream it back up to the server
  • Setup some kind of reverse tunnel (not sure if there is a sane shell environment on Windows that I can connect to)

Any ideas or thoughts would be appreciated.

A: 

The author of the logging framework we use (the object guy's) has a service that might be useful for you.

Pedro