a C# Service
-
Hi All... I've got a C# service (Windows Service) that does not show up in the services list after I install it. Does anyone know why this happens
Stephen Lintott Bsc IT (RAU)
-
Hi All... I've got a C# service (Windows Service) that does not show up in the services list after I install it. Does anyone know why this happens
Stephen Lintott Bsc IT (RAU)
Did you create an installer for it? I'm guessing that you "installed" it using the installutil.exe but haven't created an installer in the service assembly. Have a look at this[^].
But fortunately we have the nanny-state politicians who can step in to protect us poor stupid consumers, most of whom would not know a JVM from a frozen chicken. Bruce Pierson
Because programming is an art, not a science. Marc Clifton
I gave up when I couldn't spell "egg". Justine Allen -
Did you create an installer for it? I'm guessing that you "installed" it using the installutil.exe but haven't created an installer in the service assembly. Have a look at this[^].
But fortunately we have the nanny-state politicians who can step in to protect us poor stupid consumers, most of whom would not know a JVM from a frozen chicken. Bruce Pierson
Because programming is an art, not a science. Marc Clifton
I gave up when I couldn't spell "egg". Justine AllenThat's the joke... It has an installer in the assembly
Stephen Lintott Bsc IT (RAU)
-
That's the joke... It has an installer in the assembly
Stephen Lintott Bsc IT (RAU)
Hmmm... what's the install log say? No exceptions? On a looooong shot - refresh services list in services.msc.
But fortunately we have the nanny-state politicians who can step in to protect us poor stupid consumers, most of whom would not know a JVM from a frozen chicken. Bruce Pierson
Because programming is an art, not a science. Marc Clifton
I gave up when I couldn't spell "egg". Justine Allen -
That's the joke... It has an installer in the assembly
Stephen Lintott Bsc IT (RAU)
If it doesn't show up in the list of services, it didn't install correctly. This probably means the installer class in your service is broken.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
If it doesn't show up in the list of services, it didn't install correctly. This probably means the installer class in your service is broken.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001I replaced the installer class, stgill the same. No exceptions either
Stephen Lintott Bsc IT (RAU)
-
I replaced the installer class, stgill the same. No exceptions either
Stephen Lintott Bsc IT (RAU)
Without being able to see your installer class code, I don't think we can't help you any further.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
Without being able to see your installer class code, I don't think we can't help you any further.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
Hi All... I've got a C# service (Windows Service) that does not show up in the services list after I install it. Does anyone know why this happens
Stephen Lintott Bsc IT (RAU)
I had the same problem, I was using an MSI package to install the Service. The reason it was not showing up was because I never added "Custom Actions" to the Setup & Deployment project. Check this link out: http://msdn.microsoft.com/en-us/library/zt39148a(VS.80).aspx[^]