Awesome! Works a treat. Thanks Glenn!
Final code for this anyway is below in case it helps anyone! \:\)
 Code:
Break On
    Del 'c:\temp\log.txt'

$strComputer = "."
$objWMIService = GetObject("winmgmts:\\" + $strComputer + "\root\cimv2")
$colItems = $objWMIService.ExecQuery("Select * from Win32_NetworkAdapterConfiguration where IPEnabled=-1",,48)

For each $objItem in $colItems
$RC = RedirectOutput('c:\temp\log.txt')
  "Adapter Name: " + $objItem.Description ?

  For each $Item in $objItem.IPAddress
    "IPAddress: " + $Item ?
  Next
    For each $Item in $objItem.DefaultIPGateway
    "DefaultIPGateway: " + $Item ?
  Next

  For each $Item in $objItem.DNSServerSearchOrder
    "DNS Servers: " + $Item ?
  Next
  For each $Item in $objItem.IPSubnet
    "IPSubnet: " + $Item ?
     "MACAddress: " + $objItem.MACAddress ?

  "WINSPrimaryServer: " + $objItem.WINSPrimaryServer ?

  "WINSSecondaryServer: " + $objItem.WINSSecondaryServer ?
  @CRLF


  Next
    $RC = RedirectOutput('')


Need to start trying to figure out how to get the output now into a pop up type window....hopefully that is easy to do! \:\)


Edited by jules666 (2007-06-05 10:20 AM)