Help me...
Hi friends,
Has anyone know how to make a program allways run in windows? when this program is stoped by anyone , it is autorun after.
Please reply,
Thank a lot.
# 1 Re: Help me...
You can make 2 programs watching for each other, if one is killed/stopped another starts it again.
You can watch the process using WaitForSingleObject on process handle.
Look at this to know how to create process, and watch it's handle,
http://www.codeproject.com/system/newbiespawn.asp
Using VB,
http://support.microsoft.com/?kbid=129796
# 3 Re: Help me...
Or, you could create the application as a system process and then it can't be terminated without rebooting.
Correct, just you have to set permissions to the app program which you create
eguru at 2007-11-9 12:20:19 >
