mirror of
https://github.com/bol-van/zapret-win-bundle.git
synced 2025-12-16 20:07:04 +03:00
15 lines
172 B
Batchfile
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
|
|
|