Hide process or automatically restart it

  • Thread starter Thread starter G. van den Broek
  • Start date Start date
G

G. van den Broek

Does anyone know how to hide a c# application from the process list (Win 2k,
XP etc.)?
Or if this is 'impossible', how can I let my application automatically
restart when it gets killed?
 
Thanks, but that only works on Win 9x based systems.

I'm actually looking for a way to hide my process from the processes tab on
the task manager (like in Windows 2000 and XP). Or a way to make my program
automatically restart when it gets killed either by the user.
 
I really hope it isn't possible to hide it. I can't say any reason in which
it would be good to hide it.

I haven't tried it yet, but when the program is closed an event is normally
fired, can't you use that event to create a new instance of your app before
fully closing down the current instance?

Y
 
how about a service that enumerates running processes and if your's isn't
running anymore restarts it?

--
Tom Vergote / Developer
ORBID / IT Services
Tramstraat 61 / B-9052 GENT
Tel +32 (0)9 244 99 45 / +32 (0)9 244 99 96
http://www.orbid.be
 
Back
Top