How to Disable AdapterRSC using Windows PowerShell (When VPN Slowing PC)

 

How to Disable AdapterRSC using Windows PowerShell

(In case the internet becomes slow while connected to VPN)

 

Run Windows Powershell as Admin

Check if AdapterRSC is enable using this code:

·        Get-NetAdapterRSC



True = Enabled and False = Disabled

If it’s True,

Ø  Enter this code below to disable AdapterRSC

disable-netadapterrsc *

 

 


  

 Check again to confirm that AdapterRSC is successfully disabled using this code:

·        Get-NetAdapterRSC

 


Comments