Board index » delphi » Hide Applicaiton from Task Manager in window 2000

Hide Applicaiton from Task Manager in window 2000


2006-12-25 06:39:43 AM
delphi242
Hello
I've seen this question over and over and no answer.
I'm trying to create window service with GUI and everywhere I look
people say that I need to make two different processes one for the
service and one for the GUI, so I did.
Now I need to hide the GUI process from the Task manager in order to
keep the Program proffetional.
Please, if anyone know the answer to: "how do I remove a GUI
applicaiton from the task manager in window 2000" it would be very
helpfull
Thanks in advance
 
 

Re:Hide Applicaiton from Task Manager in window 2000

okaminer writes:
Quote
Hello
I've seen this question over and over and no answer.

I'm trying to create window service with GUI and everywhere I look
people say that I need to make two different processes one for the
service and one for the GUI, so I did.

Now I need to hide the GUI process from the Task manager in order to
keep the Program proffetional.

Please, if anyone know the answer to: "how do I remove a GUI
applicaiton from the task manager in window 2000" it would be very
helpfull

Thanks in advance
If you mean from the window list, then just Application.Title := '';,
Not sure.
Quote
From the process list its another story, you could make it a child of
explorer.exe, whereby not having it show the process. I havent
successfully done the child method, but I am sure its possible.