Using the normal VB converted WMI queries, I can get information on my NICs. The two following queries work fine, and return information: $colAdapters = $objWMIService.ExecQuery ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = True")$colAdapters = $objWMIService.ExecQuery ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE MACAddress = '00:A1:FF:45:89:BA'") However, the following code does not provide any information: $colAdapters = $objWMIService.ExecQuery ("SELECT * FR