This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Read More
# Check driver version and date Get-NetAdapter | Where-Object $_.InterfaceDescription -like "*Wireless*" | Get-NetAdapterAdvancedProperty Get-WmiObject Win32_PnPSignedDriver | Where-Object $_.DeviceClass -eq "NET" | Select-Object DeviceName, DriverVersion, IsSigned Test basic connectivity ping 8.8.8.8 -n 4
:: List all network adapters with details wmic nic where "NetEnabled=true" get Name, Index, MACAddress :: Force driver reinstallation from Windows Update pnputil /scan-devices
End of Document
:: Restart network stack without reboot net stop wlansvc && net start wlansvc