does anyone knows any good resources and articles that can explain how to create windows services using c#. thanks
|
1
|
|
|
|
|
|
I'd suggest you Google for the different parts, different places on the web have different information focus (and level of up-to date info). You need to know about these topics:
These are some of the topics that come to mind, if you read up on these things, you should be OK. I'd also recommend testing your service deployments on a virtual machine so you can know for a fact that your setup works. |
|||
|
|
|
|
I liked this article: http://msdn.microsoft.com/en-us/magazine/cc301845.aspx |
||
|
|
|
|
I would highly suggest a method like this for debugging purposes: Sorry for the link quality, I can't seem to find the stack overflow related question. This has helped me a ton writing and debugging my services, and monitoring them while in a test environment. |
||
|
|
|
|
Here are step-by-step instructions for creating a Windows service in C#. Easiest language to create a windows service After that, you can use these instructions to have the service install/uninstall itself from the command line as opposed to using the InstallUtil executable. How to make a .NET Windows Service start right after the installation? If you ever want to debug your service, put a call to |
|||
|
|
|
|
good learning: |
||||
|
|
|
C-sharpcorner has this article on creating services. Aspfree.com has a bit more detailed version using VS 2003. And there is always the msdn library entry. |
||
|
|
