Is there any way to write a script which allows you to Enumerate's all of
the PC's in the network?

Thanks in advance.

Wayne

Re: Enumerate Entrie Network? by Mark

Mark
Sun Aug 31 15:06:54 CDT 2003

'bind to the domain
Set objDomain = GetObject("WinNT://" & strDomain)
'filter out the machines
objDomain.Filter = Array("Computer")

For Each objComputer In objDomain
MsgBox "Computer: " & objComputer.Name
Next

"Wayne Taylor" <wtt@kryptos.co.uk> wrote in message
news:OIZmFgnbDHA.1536@TK2MSFTNGP09.phx.gbl...
> Is there any way to write a script which allows you to Enumerate's all of
> the PC's in the network?
>
> Thanks in advance.
>
> Wayne
>
>