windows service problem

N

Norman Yuan

Have you started the service after installed it? A Windows service can be
set to automatic start when machine is turned on, or manaul start. If it is
latter, you will not see it in task manager until it gets started manually
(or by other programs).
 
A

Andrew

Thanks for your reply.

But I don't even see the application on the "Computer Management\Services"
panel. So I can't even start the application up. I've tried both automatic
and manual modes. No luck.

Can it be a problem with my computer itself ?

cheers
Andrew
 
A

Andrew

I've looked into the Windows Task Manager window.

I see the application running there as "MyNewService.vhost.exe".
1) Shouldn't it be just ".exe" and not the ".vhost.exe" ?
2) I've tried to EndProcess, but it keeps on coming back again.
3) I still can't see the application in the Computer Management /Services
window.

cheers
Andrew
 
P

Phil Wilson

That link isn't workiung for me, so I don't know if it has installation
instructions using installutil, installer classes or a setup project.
If you're seeing ...vshost.exe that's the Visual Studio debugging host, so
perhaps you've got a debug version installed or something.
 
P

Phil Wilson

It's a bit vague there about installation, but what you have to do is a
Setup&Deployment Project, adding your service executable to it, and adding
custom actions referring to your service executable with InstallerClass
true. Calling the installer class methods as custom actions is what installs
and uninstalls your service.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top