Files
zapret-win-bundle/zapret-winws/enable_timestamps.cmd
bol-van d1f72b1edf bundle
2025-12-14 18:52:10 +03:00

15 lines
172 B
Batchfile

@echo off
if "%1%" == "doit" (
echo enable tcp timestamps
netsh interface tcp set global timestamps=enabled
goto :end
)
"%~dp0elevator" %0 doit
goto :eof
:end
pause