Hi Everybody,
I wanted to stop any user to kill my own process that will be run from startup. I'm able to run that successfully but I don't know how can stop users for killing that process. I have four ideas to do that and solution of any one leads to my solution.
1) Hide process from process list so that it cannot appears in process list when user press Ctl+Alt+Del.
2) Trap Ctl+Alt+Del itself.
3) Restart process when process or application kill event is fired. Here at WM_DESTROY message block my CreateProcess not succedding. Also I dought its working becouse killing process means cleaning all memory area and new process also running there.
So is there any way for any task on any Win32 plateform.