Books and tutorials on Windows Services in C#?

windows-services

Solution

There aren't many books because writing a Windows Service in C# is quite trivial. There isn't much more to it than this.

The Windows Service code should just be a thin layer to bootstrap the functionality you wish to expose as a service.

For the same reason you don't find many books on writing console applications in C#.

Problem

What are some good resources for creating/implementing Windows Services i.e.( books and/or tutorials ). What do people usually use for reference? Is there a simple step by step resource that could be easily used?

Original source