I'm setting up a RADIUS server and all works fine except for laptops with a certain Wireless NIC.
I managed to solve the problem, but I wish to have a list of all my AD Domain joined computers with the faulty/outdated NIC (all of our laptops are in several different OU's).
I was thinking something of combining the GET-ADcomputer -filter * (to list all computer objects) and combine this with the get-wmiobject win32_networkadapter | select netconnectionid, name | where name -eq "Intel(R) Dual Band Wireless-AC 8265"
The PS cmdlets work separately, but I want to match the get-wmiobject for each match triggered by the get-adcomputerCan you help me out ? :)
Get-CimInstance. Other than that, you can use a loop of your choice to query against each Computer.$ComputerNames = Get-ADComputer -Filter * -Property Name |Select -Exp Namethen,foreach ($Name in $ComputerNames) { Get-CimInstance -ComputerName $Name..., the rest should be logic on error checking if certain criteria isn't met, like not have a wireless NIC.