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

2002-09-10 Thread Kipp, James
you can also just use 'nbtstat -c'. -Original Message- From: RTO RTO [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 6:07 PM To: Timothy Johnson; 'Mark Richmond'; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network I ran this one-liner

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

2002-09-10 Thread RTO RTO
, James wrote:you can also just use 'nbtstat -c'. -Original Message- From: RTO RTO [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 6:07 PM To: Timothy Johnson; 'Mark Richmond'; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network I ran

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

2002-09-10 Thread Kipp, James
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 2:21 PM To: Kipp, James; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network Kipp: How reliable is that? Because, when I executed the command you had posited, I got nothing. Thanks, Rex -- Here

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 hosts on a network

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

2002-09-09 Thread Timothy Johnson
; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network 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

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

2002-09-09 Thread Timothy Johnson
of resources. -Original Message- From: Timothy Johnson [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:46 PM To: 'Mark Richmond'; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network Are you saying that you want to get all Windows hosts

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

2002-09-09 Thread Mark Richmond
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 network As a follow up: Win32::NodeName

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

2002-09-09 Thread Mark Richmond
To: Mark Richmond; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network 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

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

2002-09-09 Thread RTO RTO
I ran this one-liner, and it did return all the Windows NT/2000/Servers/Workstations attached to my domain/workgroup. C:\perl -e use Win32::NetAdmin; my($serverRef) = {}; Win32::NetAdmin::GetServers('', 'MYDOMAINNAME', SV_TYPE_SERVER, $serverRef); while(my($key, $val) = each %{$serverRef}){print

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

2002-09-09 Thread Timothy Johnson
, for example if you want to pick up Win9x machines as well. -Original Message- From: Mark Richmond [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:57 PM To: Timothy Johnson; [EMAIL PROTECTED] Subject: RE: How to find all active windows hosts on a network Are you saying that you