GoodbyeDPI icon indicating copy to clipboard operation
GoodbyeDPI copied to clipboard

Add a service install script for non-russia

Open Rajdave69 opened this issue 1 year ago • 1 comments

Describe your feature / Опишите ваше предложение

Here is the script:

@ECHO OFF
PUSHD "%~dp0"
set _arch=x86
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64)
IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64)

echo This script should be run with administrator privileges.
echo Right click - run as administrator.
echo Press any key if you're running it as administrator.
pause
sc stop "GoodbyeDPI"
sc delete "GoodbyeDPI"
sc create "GoodbyeDPI" binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -5" start= "auto"
sc description "GoodbyeDPI" "Passive Deep Packet Inspection blocker and Active DPI circumvention utility"
sc start "GoodbyeDPI"

POPD
echo done
pause

(Slightly modified russia script)

Please add it to the repo

Rajdave69 avatar Jul 03 '24 19:07 Rajdave69

.cmd files are not part of the software, but they indeed need some improvements.

ValdikSS avatar Jul 23 '24 04:07 ValdikSS