RE: Win32::Exchange module

2004-05-04 Thread Chris Purcell
I downloaded the newest module and extracted the exchange_example.pl script (I haven't installed the module yet though) and it works great:) Thanks a lot for your help, I appreciate it. Chris Steven Manross said: > It should be on cpan now or get it here... > > http://www.manross.net/perl/pp

RE: Win32::Exchange module

2004-05-04 Thread Steven Manross
: Win32::Exchange module I'll use whatever works:) As of right now, I don't have it working. Please send me the new example. Thanks, Chris > Win32::Exchange is a wrapper for all the OLE calls involved in making > a mailbox. > > If you look at the code for Win32::Exchange, y

RE: Win32::Exchange module

2004-05-03 Thread Chris Purcell
Ok, I used the example script and trimmed it down so that I'm only using what I need and this is the output version = 6.0 build= 6249.4 service pack = 3 Failed creating CDO.Person object - Error returning into main from new () Here is the script below... #!/usr/local/bin/pe

RE: Win32::Exchange module

2004-05-03 Thread Steven Manross
Load the Exchange Admin tools on the system that the script is running on. Steven -Original Message- From: Chris Purcell [mailto:[EMAIL PROTECTED] Sent: Monday, May 03, 2004 1:57 PM To: Steven Manross Cc: [EMAIL PROTECTED] Subject: RE: Win32::Exchange module Ok, I used the example

RE: Win32::Exchange module

2004-05-03 Thread Chris Purcell
They are installed and patched to SP3. Chris > Load the Exchange Admin tools on the system that the script is running > on. > > Steven ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Win32::Exchange module

2004-05-03 Thread Steven Manross
ay 03, 2004 2:08 PM To: Steven Manross Cc: [EMAIL PROTECTED] Subject: RE: Win32::Exchange module They are installed and patched to SP3. Chris > Load the Exchange Admin tools on the system that the script is running > on. > > Steven _

RE: Win32::Exchange module

2004-05-03 Thread Steven Manross
, May 03, 2004 2:33 PM To: Chris Purcell Cc: [EMAIL PROTECTED] Subject: RE: Win32::Exchange module Something is wrong with the CDO.Person COM object. Try this... use Win32::OLE; my $this_object = Win32::OLE->new("CDO.Person"); if (Win32::OLE->LastError() != 0 ) { print &quo

RE: Win32::Exchange module

2004-05-03 Thread Steven Manross
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Purcell Sent: Monday, May 03, 2004 12:57 PM To: [EMAIL PROTECTED] Subject: Win32::Exchange module I'm using the Win32::Exchange module to create mailboxes on an Exchange 2000 server. I'm getting this error... &

Win32::Exchange module

2004-05-03 Thread Chris Purcell
I'm using the Win32::Exchange module to create mailboxes on an Exchange 2000 server. I'm getting this error... "Can't call method "GetMailbox" on unblessed reference at C:\addusers.pl line 98." As of right now, I just copied and pasted some of the examples f