views:

27

answers:

2

Aside from ActiveState's PerlSvc, what other interpreters and compilers support the development of Windows Services?

+3  A: 

How about Visual Studio .Net?

Simple Windows Service Sample

Introduction to Windows Service Applications

astander
+1 - and here's a step-by-step for how to do it using C#...http://stackoverflow.com/questions/593454/easiest-language-to-create-a-windows-service/593803#593803
Matt Davis
A: 

Visual studio has excellent support for creating services. With a little tweaking you can even debug them. But any compiler can create a service, it's just a matter of accepting certain run parameters that a google search can provide.

Jason Webb