I have written a script that iterates through all the computers in my domain and returns their processor information.
I do this using a FOR LOOP and the computers IP address.
For example:
Dim strComputer, intX
FOR intX = 1 to 256
strComputer = "10.170.80." & intX
set wmiLocator = CreateObject "WbemScripting.SWbemLocator")
set objWMIService = wmiLocator.ConnectServer strcomputer,,AdminID,password)
MsgBox ProcessorID
NEXT
This works fine most of the time except for when it gets to an IP address that is not used, then the script displays an error and exits the script. I want to be able to iterate through all 256 possible IP address, but I also want the script to determine if the IP address belongs to a computer and if it doesn’t to iterate to the next possible address and not just exit the script.
How can I do this?
Thanks in advance,
elmorro
I do this using a FOR LOOP and the computers IP address.
For example:
Dim strComputer, intX
FOR intX = 1 to 256
strComputer = "10.170.80." & intX
set wmiLocator = CreateObject "WbemScripting.SWbemLocator")
set objWMIService = wmiLocator.ConnectServer strcomputer,,AdminID,password)
MsgBox ProcessorID
NEXT
This works fine most of the time except for when it gets to an IP address that is not used, then the script displays an error and exits the script. I want to be able to iterate through all 256 possible IP address, but I also want the script to determine if the IP address belongs to a computer and if it doesn’t to iterate to the next possible address and not just exit the script.
How can I do this?
Thanks in advance,
elmorro