RE: How to find all active windows hosts on a network

2002-09-09 Thread Mark Richmond
Thanks to everyone for the help -mark - Mark Richmond <[EMAIL PROTECTED]> Airvana Inc. 25 Industrial Ave. Chelmsford, MA 01824 Voice: 978-250-2669 Fax: 978-250-3910 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to find all active windows hosts on a network

2002-09-09 Thread Mark Richmond
}else{ > $OS = "Unknown Operating System"; > } > $servicepack = $verRoot->{'CSDVersion'}; > $OSType = $verRoot->{'CurrentType'}; > $build = $verRoot->{'CurrentBuildNumber'}; > > It

RE: How to find all active windows hosts on a network

2002-09-09 Thread Mark Richmond
to find them all and copies files to them. -mark > > -Original Message- > From: Mark Richmond [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 09, 2002 2:31 PM > To: Mark Richmond; [EMAIL PROTECTED] > Subject: RE: How to find all active windows hosts on a ne

RE: How to find all active windows hosts on a network

2002-09-09 Thread Mark Richmond
As a follow up: Win32::NodeName() produces the local NodeName I need a list of all the nodes. The hunt continues > -Original Message- > From: Mark Richmond > Sent: Monday, September 09, 2002 5:10 PM > To: [EMAIL PROTECTED] > Subject: How to find all active windows hos

How to find all active windows hosts on a network

2002-09-09 Thread Mark Richmond
Hello all: I need to produce a list Windows2k hosts on our network. It would seem that I could obtain the information from the domain controllers I looked at Win32::NetResource but can't figure out how to get the node name. Any thoughts ? -thanks -mark - Mark Ric

RE: get file permissions?

2002-04-02 Thread Mark Richmond
Consider sysopen(); saves you the stat(); Use exiting file create if required sysopen(FH, $path, O_WRONLY | O_TRUNC | O_CREAT); If you're really sure it exists sysopen(FH, $path, O_WRONLY | O_TRUNC); > -Original Message- > From: Bryan R Harris [mailto:[EMAIL PROTECTED]] > Sent: M

RE: Problem With Make on Solaris 8 (Date-Calc-5.0)

2002-02-20 Thread Mark Richmond
The Makefile can't find gcc make sure it's in your path and rerun configure > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 20, 2002 9:38 AM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Problem With Make on Solaris 8 (

RE: Mail::Sender on WinNT - can't connect

2002-02-15 Thread Mark Richmond
As Jenda mentioned your exchange server might not support SMTP. You may also run into mail relay problems with exchange if you don't authenticate with a DOMAIN. Also it's very likely that exchange is not configured to relay outside the company. For simple mail messages I use Mail::Sendmail # E

RE: Running the system command

2002-02-05 Thread Mark Richmond
> -Original Message- > From: Ned Cunningham [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 05, 2002 9:49 AM > To: '[EMAIL PROTECTED]' > Subject: Running the system command > > > What is the proper and best way to use the system command??? > System('command'); > Or (system 'comman

Newbe looping questions

2002-02-05 Thread Mark Richmond
"Print loop forever \n"; } This just loops forever It never sees that the value of $foo because it's in the loop. What an I missing -mark - Mark Richmond <[EMAIL PROTECTED]> Airvana Inc. 25 Industrial Ave. Chelmsford, MA 01824 Voice: 978-250-2669 Fax:

Dates in file or directory names ?

2002-01-31 Thread Mark Richmond
Title: Blank Ok, so I'm confused   What I want to do is create a directory where the name is the current date say mkdir(2002131);  What Can't figure out is how to build the date string. I'm sure I'm just missing something. Any thoughts.       -regards     -mark - M