Service running Infinitely

  • Thread starter Thread starter mkashif1
  • Start date Start date
M

mkashif1

Hi,
I'm developing a service that should run infinitely and should not be
stoppable. The
user (any user even admin) should not be able to stop/terminate the
service.
Is there any way? or should I go for a normal other than service?
Any recommendations are appreciated.
thanks
 
AFAIK, the only way to do what you want would be to use Windows Embedded
(XP) an build a system image that does not include the Control Panel and
other access to the Administrator Tools -- I suspect that there is no
practical way to do it otherwise.

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
 
I think there must be a way by which you can override your StopService
function(I don't know the signature of the function but I am talking about a
function which is called whenever somebody stops the service!!) and just
ignore the stop command.

Regards,
Jigar Mehta
 
Back
Top