byedpi/dist/windows/service_install.bat

20 lines
618 B
Batchfile
Raw Normal View History

2024-04-23 12:48:37 +00:00
@echo off
title ByeDPI - Install Service
rem Run as administrator
reg query "HKU\S-1-5-19\Environment" >nul 2>&1
if not %errorlevel% equ 0 (
powershell.exe -windowstyle hidden -noprofile "Start-Process '%~dpnx0' -Verb RunAs"
exit /b 0
)
2024-04-23 12:48:37 +00:00
set svc_name="ByeDPI"
set svc_desc="Local SOCKS proxy server to bypass DPI (Deep Packet Inspection)."
set svc_bin="\"%~dp0ciadpi.exe\" --ip 127.0.0.1 --oob 3+s --split 1 --disorder 3+s --mod-http=h,d --auto=torst --tlsrec 1+s"
2024-04-23 12:48:37 +00:00
sc stop %svc_name%
sc delete %svc_name%
sc create %svc_name% binPath= %svc_bin% start= "auto"
sc description %svc_name% %svc_desc%
2024-08-21 14:56:23 +00:00
sc start %svc_name%