This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Output "Setting congestion provider to CTCP for Internet." | |
netsh int tcp set supplemental Internet congestionprovider=ctcp | Out-Null | |
Write-Output "Enabling Direct Cache Access, and configuring RSS and RSC settings globally." | |
netsh int tcp set global dca=enabled rss=enabled rsc=disabled | Out-Null | |
Write-Output "Disabling TCP timestamps globally." | |
netsh int tcp set global timestamps=disabled | Out-Null | |
Write-Output "Setting initial Retransmission Timeout (RTO) to 2000 milliseconds globally." |