Mailing list randomly stops sending me mail

2005-01-10 Thread Ted Schuerzinger
Am I the only person having this problem with the list? I haven't received any messages for four days, despite the fact that going to the site shows that there have been lots of messages posted. The site claimed I was still subscribed. The same thing happened to me less than two months ago

Re[2]: Crypt::SSLeay

2005-01-10 Thread Christopher Taranto
Hi Sam, http://www.slproweb.com/products/Win32OpenSSL.html Monday, January 10, 2005, 7:36:11 AM, you wrote: GS> I had to install openssl before this would work.  Do a search GS> for "openssl" (a free windows download).  GS> Sam Gardner GS> GTO Application Development GS> Keefe, Bruyette

Re: Newbie: RegEx portions of a string into an array

2005-01-10 Thread $Bill Luebkert
Joe Discenza wrote: > [EMAIL PROTECTED] * *wrote, on > Mon 1/10/2005 06:53 > > : What I have is > > : > > : $string = “my name is %name%, age %age%, department %dept%”; > > : > > : What I want is > > : > > : The % wrapped text returned to an array like > > : > >

Re: Crypt::SSLeay

2005-01-10 Thread Randy Kobes
On Mon, 10 Jan 2005, Lundgren, Scott wrote: > I'm using a script that uses Crypt::SSLeay and the module doesn't seem > to have installed properly so I'm hoping someone can guide me of how to > correct it. Below is my environment, how I installed Crypt::SSLeay, the > script that doesn't work, and w

RE: Crypt::SSLeay

2005-01-10 Thread Gardner, Sam
Title: RE: Crypt::SSLeay I had to install openssl before this would work.  Do a search for "openssl" (a free windows download).  Sam Gardner GTO Application Development Keefe, Bruyette & Woods, Inc. 212-887-6753 -Original Message- From: Lundgren, Scott [mailto:[EMAIL PRO

Crypt::SSLeay

2005-01-10 Thread Lundgren, Scott
I'm using a script that uses Crypt::SSLeay and the module doesn't seem to have installed properly so I'm hoping someone can guide me of how to correct it. Below is my environment, how I installed Crypt::SSLeay, the script that doesn't work, and what I've tried to figure out why the script doesn't w

RE: Task Scheduler

2005-01-10 Thread Paul Sobey
I run these stubs for my startup and logon scripts - you specify them in the appropriate group policy location (startup/logon). The reason for using the wsh stub rather than putting the whole script in the wsh file is to allow normal editing of the .pl script and syntax checking with -c. Note t

RE: Task Scheduler

2005-01-10 Thread Paul Sobey
Have you considered startup scripts in group policy? I find these work very well - ActivePerl adds the appropriate WSH hooks so you can run perl group policy scripts... Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Erich Beyrent Sent: 10 Januar

RE: Task Scheduler

2005-01-10 Thread Erich Beyrent
> Hi, > > This should work: > > use Win32::TaskScheduler; > my $scheduler = Win32::TaskScheduler->New(); my %bootTrigger = ( 'BeginYear' => 2004, 'BeginMonth' => 12, > > 'BeginDay' => 1, 'TriggerType' => $scheduler->TASK_EVENT_TRIGGER_AT_SYSTEMSTART, > ); > $scheduler->NewWorkItem("My Task",\

RE: Task Scheduler

2005-01-10 Thread Gardner, Sam
Title: RE: Task Scheduler Put it in the registry under HKLM\Software\Microsoft\Windows\CurrentVersion\Run Sam Gardner GTO Application Development Keefe, Bruyette & Woods, Inc. 212-887-6753 -Original Message- From: Erich Beyrent [mailto:[EMAIL PROTECTED]] Sent: Monday, Ja

Re: Task Scheduler

2005-01-10 Thread Tom Brusselle
Hi, This should work: use Win32::TaskScheduler; my $scheduler = Win32::TaskScheduler->New(); my %bootTrigger = ( 'BeginYear' => 2004, 'BeginMonth' => 12, 'BeginDay' => 1, 'TriggerType' => $scheduler->TASK_EVENT_TRIGGER_AT_SYSTEMSTART, ); $scheduler->NewWorkItem("My Task",\%bootTrigger); $sch

Task Scheduler

2005-01-10 Thread Erich Beyrent
Does anyone know how to schedule a new task to run at system reboot (every time the system reboots)? I cannot seem to figure it out... TIA -Erich- ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://lists

RE: Newbie: RegEx portions of a string into an array

2005-01-10 Thread Joe Discenza
[EMAIL PROTECTED] wrote, on Mon 1/10/2005 06:53 : What I have is : : $string = “my name is %name%, age %age%, department %dept%”; : : What I want is : : The % wrapped text returned to an array like : : my @list = GetVars($string); : : Anyone done something similar or know how I could

Newbie: RegEx portions of a string into an array

2005-01-10 Thread ken . brown
What I have is $string = "my name is %name%, age %age%, department %dept%"; What I want is The % wrapped text returned to an array like My @list = GetVars($string); My problem I don't know what sub GetVars will look like# Anyone done something similar or know how I coul