From d9f92d3a4333b84587f79f0fc9585b302c2a82b7 Mon Sep 17 00:00:00 2001 From: raspopov Date: Wed, 21 Aug 2024 17:56:23 +0300 Subject: [PATCH] Disabled setting the proxy by default. --- dist/windows/service_delete.bat | 4 +--- dist/windows/service_install.bat | 4 +--- dist/windows/service_restart.bat | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/dist/windows/service_delete.bat b/dist/windows/service_delete.bat index 16ed737..45e4bfa 100644 --- a/dist/windows/service_delete.bat +++ b/dist/windows/service_delete.bat @@ -11,6 +11,4 @@ exit /b 0 set svc_name="ByeDPI" sc stop %svc_name% -sc delete %svc_name% - -call "%~dp0proxy_reset.bat" \ No newline at end of file +sc delete %svc_name% \ No newline at end of file diff --git a/dist/windows/service_install.bat b/dist/windows/service_install.bat index f81ec71..bac8f17 100644 --- a/dist/windows/service_install.bat +++ b/dist/windows/service_install.bat @@ -17,6 +17,4 @@ sc stop %svc_name% sc delete %svc_name% sc create %svc_name% binPath= %svc_bin% start= "auto" sc description %svc_name% %svc_desc% -sc start %svc_name% - -call "%~dp0proxy_set.bat" \ No newline at end of file +sc start %svc_name% \ No newline at end of file diff --git a/dist/windows/service_restart.bat b/dist/windows/service_restart.bat index 869c343..bc86a91 100644 --- a/dist/windows/service_restart.bat +++ b/dist/windows/service_restart.bat @@ -11,6 +11,4 @@ exit /b 0 set svc_name="ByeDPI" sc stop %svc_name% -sc start %svc_name% - -call "%~dp0proxy_set.bat" \ No newline at end of file +sc start %svc_name% \ No newline at end of file