.net - Windows service deploying problem -
I have created a simple Windows service project. I created the project, setup the setup project to set it up and tutorial It is configured according to the information. I have created the setup project and installed it. In the target I can search for files so that it can be installed correctly. The service does not do anything special, it just writes a message on the startup and shutdown the event log.
The problem is that I can not see my app on the Windows Service List (in the Computer / Management dialog) I can not control it.
Do anyone have any ideas that I am doing wrong? If my help is helpful then my OS Win7 is 64 bit.
Have you tried to install it using the installutil.exe utility (an admin console session under which)?
installutil Service.exe
In addition, you must add an installer component to your window service before installing it Installutil or the default window setup project.
More steps are required to install Windows services, so you will need to run custom installer actions to register it on the operating system.
Comments
Post a Comment