Found this here.
Seems like you need to disable RSC
Quick way to disable Receive Segment Coalescing (RSC) via Powershell
Open Powershell (Admin)
Get the WiFi adapter’s NAME using
> Get-NetAdapter
Check to see if “Receive Segment Coalesing (RSC)” is on
> Get-NetAdapterRSC
a. True=RSC is enabled | False=disabled
If true use the following command to disable RSC
> Disable-NetAdapterRSC -Name Wi-Fi
Recent Comments