How to delete false routing entry every time ZT adds it? (def.GW)

I’ve found that ZT is responsible killing the internet sometimes suddenly on some PCs.

Opened an issue on GitHub, but in case there will be no fix to older releases, (like Win7 compatible 1.6.6 version) what could I do?

Creating a task in task manager that would run every 1 minute once is the obvious step, but I’d like to ask, if someone has an idea how to do it better?
zt_route_delete.bat

@ECHO OFF

set WaitPeriodSec=120
set dummyIP=192.0.2.50

:start
call route delete 0.0.0.0 mask 0.0.0.0 25.255.255.254 > nul

:waitMore
for /L %%S IN (1,1, %WaitPeriodSec%) DO (
ping -n 1 %dummyIP% -w 1000 > nul 
)

goto start

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.