Re: perlsvc question

2003-04-03 Thread Tobias Hoellrich
At 09:18 AM 4/3/2003 -0500, Eric Logeson wrote: Hello How do I specify an account that the service should log on as? Open the PDK Help and read under PerlSvc-What is PerlSvc?. Hint: Search for UserName. Tobias ___ Perl-Win32-Users mailing list [EMAIL

RE: perlsvc question

2003-04-03 Thread Eric Logeson
PROTECTED] Subject: Re: perlsvc question At 09:18 AM 4/3/2003 -0500, Eric Logeson wrote: Hello How do I specify an account that the service should log on as? Open the PDK Help and read under PerlSvc-What is PerlSvc?. Hint: Search for UserName. Tobias

RE: perlsvc question

2003-04-03 Thread Tobias Hoellrich
At 09:54 AM 4/3/2003 -0500, Eric Logeson wrote: I did read that many times... (http://aspn.activestate.com/ASPN/Perl/Reference/Products/PDK/PerlSvc/What.html) from what I gather I need to specify: $Config{UserName} = 'test'; $Config{Password} = 'test'; which I did, but upon compilation I get the

RE: PerlSvc

2003-03-12 Thread Ken Cornetet
How about an alternate method? Install Autoexnt from the NT resource kit. Set your service to start manually. Create an Autoexnt.bat that waits until the database service is started before doing a net start YourServicehere. -Original Message- From: John Deighan [mailto:[EMAIL

Re: PerlSvc

2003-03-12 Thread Cameron Dorey
John Deighan wrote: I have a service, that I've created with PerlSvc. Occasionally, it doesn't start up correctly after a reboot, and I suspect that it's because it accesses a database, and the database server may not have started completely when my service is started. Under Windows, one

Re: PerlSvc

2003-03-12 Thread Jan Dubois
On Wed, 12 Mar 2003 13:35:33 -0500, John Deighan [EMAIL PROTECTED] wrote: I have a service, that I've created with PerlSvc. Occasionally, it doesn't start up correctly after a reboot, and I suspect that it's because it accesses a database, and the database server may not have started

Re: PerlSVC

2002-09-06 Thread Jan Dubois
On Fri, 6 Sep 2002 16:51:10 -0400, Ricci, Mark [EMAIL PROTECTED] wrote: Hello All, I'm having some trouble getting this script to run as a service, any and all help is appreciated: There seems to be a syntax error here: #!c:\perl\bin use Win32::Process; use Win32; package PerlSvc;