mirror of
https://github.com/zer0condition/GoodmansKernel/
synced 2026-08-19 01:14:35 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
net session >nul 2>&1
|
||||
if errorlevel 1 (
|
||||
echo [X] must be run as Administrator.
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
sc query Goodmans >nul 2>&1
|
||||
if errorlevel 1 (
|
||||
echo [*] service not present
|
||||
exit /b 0
|
||||
)
|
||||
|
||||
echo [*] sc stop Goodmans
|
||||
sc stop Goodmans >nul 2>&1
|
||||
|
||||
echo [*] sc delete Goodmans
|
||||
sc delete Goodmans
|
||||
|
||||
endlocal
|
||||
Reference in New Issue
Block a user