D
Get-WmiObject -Namespace Root\StandardCimv2 -Class MSFT_NetAdapter | `
Where-Object { $_.State -eq 2 -and $_.OperationalStatusDownMediaDisconnected -eq $false -and `
$_.NdisPhysicalMedium -eq 14 -and $_.Virtual -eq $false } | `
Format-Table Name,Virtual,State,NdisPhysicalMedium, `
@{Label='Connected'; Expression={-not $_.OperationalStatusDownMediaDisconnected}}, `
@{Label='Speed(MB)'; Expression = {$_.Speed/1000000}}, `
FullDuplex,InterfaceDescription
can u open powershell with admin right and run this command?
copy it all and paste it there, then press enter, then reply here what output it throws
Code:Get-WmiObject -Namespace Root\StandardCimv2 -Class MSFT_NetAdapter | ` Where-Object { $_.State -eq 2 -and $_.OperationalStatusDownMediaDisconnected -eq $false -and ` $_.NdisPhysicalMedium -eq 14 -and $_.Virtual -eq $false } | ` Format-Table Name,Virtual,State,NdisPhysicalMedium, ` @{Label='Connected'; Expression={-not $_.OperationalStatusDownMediaDisconnected}}, ` @{Label='Speed(MB)'; Expression = {$_.Speed/1000000}}, ` FullDuplex,InterfaceDescription
Name Virtual State NdisPhysicalMedium Connected Speed(MB) FullDuplex InterfaceDescriptionthat will tell your physical connection speed