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 f

RE: perlsvc question

2003-04-03 Thread Eric Logeson
il 03, 2003 9:39 AM To: [EMAIL 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 Pe

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 [EMA

perlsvc question

2003-04-03 Thread Eric Logeson
Hello How do I specify an account that the service should log on as? use strict; use warnings; package PerlSvc; our %Config; sub Startup{ while(ContinueRun()){} } sub Install{ $Config{ServiceName} = 'test'; $Config{DisplayName} = 'test'; $Config{UserName} = 'test'