Re: Win32::Ole (MAPI) and Win2K scheduler

2006-01-05 Thread Rod Butcher
Christopher Taranto wrote: Hi Ken, Wednesday, January 4, 2006, 5:07:58 AM, you wrote: LK> Thanks to Steven Manross, I'm a step further along in LK> troubleshooting this. Using Steven's suggestion, I got the LK> following from OLE->LastError: 'Win32::OLE(0.1403) error LK> 0x80070005: "Access is

Re: Win32::Ole (MAPI) and Win2K scheduler

2006-01-04 Thread DePriest, Jason R.
prompt. > > Ken > -Original Message- > From: Steven Manross [] > Sent: Tuesday, January 03, 2006 5:18 PM > To: LeFevre, Ken; > Subject: RE: Win32::Ole (MAPI) and Win2K scheduler > > > Replace : > > die "Oops, cannot start Outlook"; > >

RE: Win32::Ole (MAPI) and Win2K scheduler

2006-01-04 Thread LeFevre, Ken
PROTECTED] Sent: Tuesday, January 03, 2006 5:18 PM To: LeFevre, Ken; perl-win32-users@listserv.ActiveState.com Subject: RE: Win32::Ole (MAPI) and Win2K scheduler Replace : die "Oops, cannot start Outlook"; with open (FILE,">>c:\\outlookerror.txt"); print FILE "Oo

RE: Win32::Ole (MAPI) and Win2K scheduler

2006-01-03 Thread Steven Manross
evre, Ken Cc: perl-win32-users@listserv.ActiveState.com Subject: Re: Win32::Ole (MAPI) and Win2K scheduler LeFevre, Ken wrote: > I created a program using ActiveState's perl 5.8.4, compiled it using > perlapp 5.3.0 and ran it on Windows 2000 Professional SP4 against > Outlook 2000 SR-1 (9.0.0.

Re: Win32::Ole (MAPI) and Win2K scheduler

2006-01-03 Thread Foo Ji-Haw
LeFevre, Ken wrote: I created a program using ActiveState's perl 5.8.4, compiled it using perlapp 5.3.0 and ran it on Windows 2000 Professional SP4 against Outlook 2000 SR-1 (9.0.0.3821). It runs properly both from a command prompt and as a scheduled task. I released it into production on W

RE: Win32::Ole (MAPI) and Win2K scheduler

2006-01-03 Thread Steven Manross
Replace : die "Oops, cannot start Outlook"; with open (FILE,">>c:\\outlookerror.txt"); print FILE "Oops, cannot start Outlook\n".Win32::OLE->LastError(); close (FILE); die "Oops, cannot start Outlook"; It will help refine what error the script is throwing (and refine the possible solutions to