More Perl for Win32 stuff

djberg96 on 2003-09-22T05:57:40

While I'm still on my Win32 kick, I want to be able to create a Windows Service in Ruby. I wanted to make sure I didn't miss out on a Perl module that already existed that did this (which I could then port), so I scoured CPAN first this time.

I found Win32::Service, but that only lets you manipulate existing services, not create new ones. A search on c.l.p.m. lead me to Proc::Background which has Win32 support. However, this is just a wrapper for CreateProcess(), which has nothing to do with Windows Services.

I finally found a bunch of Win32 modules (that are not located on CPAN) at the Roth Consulting home page. One of these is Win32::Daemon and appears to do what I want.