initial commit

This commit is contained in:
zer0condition
2026-08-19 01:23:15 +05:30
commit 00a3adf890
89 changed files with 21608 additions and 0 deletions
+23
View File
@@ -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