Connect to console app running as a system task on Windows server

545 views Asked by At

I run several game servers on a single . Many of the game servers run as . I have created to run each on startup even if I'm not logged on. I would like to be able to attach to the consoles of those apps when logged on to the server, similar to what can be done in . Perhaps I'm going about this in the wrong way. Is there a way to attach to console apps running as tasks? Is there a software tool that accommodates this sort of thing?

Update: Been searching high and low for a solution but haven't found anything yet. Have decided to write a for console app that will redirect Stdin, Stdout and Stderr of a process to a Telnet connection. Will use to run the wrapper as a .

1

There are 1 answers

0
Chrisbot On BEST ANSWER

I produced a solution: https://github.com/ccourson/Banjo

Banjo will launch a specified console application and route its streams to and from a telnet connection.

Pull requests welcome.