mirror of
https://github.com/hufrea/byedpi.git
synced 2024-11-20 12:25:05 +00:00
13 lines
277 B
Batchfile
13 lines
277 B
Batchfile
@echo off
|
|
title ByeDPI - Delete Service
|
|
|
|
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
|
|
|
|
set svc_name="ByeDPI"
|
|
|
|
sc stop %svc_name%
|
|
sc delete %svc_name%
|
|
pause |