Last active
June 19, 2026 06:50
-
-
Save MrDisguised/d3bff91c368ee2f808a98d3212adbb8a to your computer and use it in GitHub Desktop.
My goodbyedpi configuration service files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ECHO OFF | |
| PUSHD "%~dp0" | |
| set _arch=x86 | |
| IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | |
| IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | |
| echo Run as administrator. | |
| pause | |
| sc stop "GoodbyeDPI" | |
| sc delete "GoodbyeDPI" | |
| sc create "GoodbyeDPI" start= auto binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -9 --dns-addr 77.88.8.8 --dns-port 1253 --dnsv6-addr 2a02:6b8::feed:0ff --dnsv6-port 1253" | |
| sc description "GoodbyeDPI" "DPI circumvention tool" | |
| sc failure "GoodbyeDPI" reset= 0 actions= restart/5000/restart/5000/restart/5000 | |
| sc start "GoodbyeDPI" | |
| POPD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ECHO OFF | |
| PUSHD "%~dp0" | |
| set _arch=x86 | |
| IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set _arch=x86_64) | |
| IF DEFINED PROCESSOR_ARCHITEW6432 (set _arch=x86_64) | |
| echo Run as administrator. | |
| pause | |
| sc stop "GoodbyeDPI" | |
| sc delete "GoodbyeDPI" | |
| sc create "GoodbyeDPI" start= auto binPath= "\"%CD%\%_arch%\goodbyedpi.exe\" -9" | |
| sc description "GoodbyeDPI" "DPI circumvention tool" | |
| sc failure "GoodbyeDPI" reset= 0 actions= restart/5000/restart/5000/restart/5000 | |
| sc start "GoodbyeDPI" | |
| POPD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment