I am not getting any errors, When I run the script the "The AdsPath is:" is printed 4 times with no data behind it. That I correct there are 4 people with the name of tim.*
Timothy F. Gallagher CSC Systems Engineer -----Original Message----- From: Chas Owens [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 12:43 PM To: Gallagher, Tim (NE) Cc: Perl Beginners Subject: Re: Problems converting vbscript to perl On 4/10/06, Gallagher, Tim (NE) <[EMAIL PROTECTED]> wrote: > I have a vb script example that I am trying to convert to Perl. Most of > the script is done except for the last part. Can some tell me what I am > missing? Here is the script. > Start Script snip The script should start with use strict; use warings; That will help you pinpoint errors. "use diagnostics;" can be helpful if you don't know what the error messages mean (it tries to be a more verbose version of "use warnings;"). Beyond that, what error messages are you getting? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>
