0

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

bugmagnet
  • 7,631
  • 8
  • 69
  • 131

2 Answers2

3

How about Visual Studio .Net?

Simple Windows Service Sample

Introduction to Windows Service Applications

Adriaan Stander
  • 162,879
  • 31
  • 289
  • 284
  • +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 Apr 24 '10 at 02:22
0

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
  • 7,938
  • 9
  • 40
  • 49