I have a list of about 1400 PC's and wanted to run a WMI querry against each one to find out if they have a static IP address. I can run a script to check for active DHCP however, I would then have to compare that list to my full list of computers to see which ones are using static IPs. Ive checked the FAQ's, searched for Static IP's in this forum, and have experimented with many of the WMI NetworkAdapterConfiguration settings and can't get the script to do what I need it to do. Can someone help me please?
Code:
Set objOU = GetObject("LDAP://OU=Computers, DC=microsoft, DC=com")
For Each objComputer in objOU
strComputer = objComputer.cn
If TestPing(strComputer) = False Then
WScript.Echo "Couldn't reach " & strComputer
Else
Set objWMIService = GetObject _
("winmgmts:" & "!\\" & strComputer & "\root\cimv2")
Set colAdapters = objWMIService.ExecQuery _
("Select * from Win32_NetworkAdapterConfiguration Where IPEnabled = True")
For Each objAdapter In colAdapters
Wscript.Echo objAdapter.IPEnabled & strComputer
Next
End If
Next