Can't see windows service after installation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I'm trying to install my Windows Service.
But i can't see it in my services list in MMC.
Installation has completed without error but i can't see my service.
Service is only for test. Have no code inside. only a "beep()" command in
the OnStart event.
What can i do?
Thanks
 
Stefano said:
Hi,
I'm trying to install my Windows Service.
But i can't see it in my services list in MMC.
Installation has completed without error but i can't see my service.
Service is only for test. Have no code inside. only a "beep()"
command in the OnStart event.
What can i do?
Thanks

Check to see if the right registry entries are there:

HKLM\System\CurrentControlSet\Services

search this to see if there is an entry for your service. If not, then
your installation routine did not work correctly.

Richard
 
Back
Top