MS doesn't give 25gbs a higher network metric than 10gbs. Lame! Powershell fix: Get-NetAdapter | Where-Object {$_.LinkSpeed -eq "25 Gbps"} | Set-NetIPInterface -InterfaceMetric 13 #25gbps #networking #powershell
1
0
0
16
0
Download Image
function 25G-Setup(){ Enable-NetAdapterRDMA; Get-NetAdapterRdma; Get-NetAdapter | Where-Object {$_.LinkSpeed -eq "25 Gbps"} | Set-NetIPInterface -InterfaceMetric 13; Disable-NetAdapterPowerManagement *; }