Just copy this in a Batch and Run it, its include everything from Speedguide Optimization what is not included by the TCP Optimizer:
Code:
@echo off
:SG_Gaming_Tweaks
REM Network Throttling Index Gaming Tweak
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /v NetworkThrottlingIndex /t REG_DWORD /d 4294967295 /f
REM System Responsiveness Gaming Tweak
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /v SystemResponsiveness /t REG_DWORD /d 00000010 /f
REM Turn off LargeSystemCache ( Default: 0 Win10 1803 )
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v LargeSystemCache /t REG_DWORD /d 00000000 /f
REM Disable Game Bar and Game Mode and Xbox DVR under Windows 10
REM Game Bar
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\xbgm" /v Start /t REG_DWORD /d 00000004 /f
REM Game Mode
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\GameBar" /v AllowAutoGameMode /t REG_DWORD /d 00000000 /f
REM Xbox DVR
REG ADD "HKEY_CURRENT_USER\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 00000000 /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\" /v AllowGameDVR /t REG_DWORD /d 00000000 /f
REM MMCSS(Multimedia Class Scheduler) Tweak
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games" /v "Scheduling Category" /t REG_SZ /d "High" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games" /v "SFIO Priority" /t REG_SZ /d "High" /f
REM ECN Capability
netsh int tcp set global ecncapability=enabled
REM Disable Receive Segment Coalescing State (RSC) & Disable Large Send Offload (LSO) & PacketCoalescing under Windows 10
powershell.exe Set-NetOffloadGlobalSetting -PacketCoalescingFilter Disabled -ReceiveSegmentCoalescing Disabled
REM Disable Large Send Offload (LSO) under Adapter
powershell.exe Disable-NetAdapterLso -Name *
REM Enable Checksum Offload under Adapter
powershell.exe Enable-NetAdapterChecksumOffload -Name * -IpIPv4 -TcpIPv4 -TcpIPv6 -UdpIPv4 -UdpIPv6
pause
St1cky
Bookmarks