hæx.com logo

Fix for 2 second lag spikes every 10 seconds

Problem

Solution:

netsh wlan set autoconfig enabled=no interface="WiFi"

Solution as sweet bat program:

@echo off
echo Option 1: Enable fix
echo Option 2: Disable fix
SET /P M=Choose an option:
IF %M%==1 GOTO ENABLE
IF %M%==2 GOTO DISABLE
:ENABLE
cls
SET /P input=Interface name (Typically "WiFi"):
netsh wlan set autoconfig enabled=no interface="%INPUT%"
exit
:DISABLE
cls
SET /P input=Interface name (Typically "WiFi"):
netsh wlan set autoconfig enabled=yes interface="%INPUT%"
exit

Source