Verifique o nome da interface com:
netsh interface ip show address
e tente algo assim:
@echo off
for /f "tokens=2 delims=:" %%g in ('netsh interface ip show address
"Wireless Network Connection 14" ^| findstr "Default"') do
set DefaultGateway=%%g
echo %DefaultGateway%
pause