From 4d3dca5dc27d4d9f4d723e18a2c65e4d69b3037f Mon Sep 17 00:00:00 2001 From: ZmrdWeders Date: Wed, 2 Apr 2025 16:05:57 +0700 Subject: [PATCH] Adds output for services status check --- service_status.bat | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/service_status.bat b/service_status.bat index fab9526..f9dad2a 100644 --- a/service_status.bat +++ b/service_status.bat @@ -2,14 +2,22 @@ chcp 65001 > nul :: 65001 - UTF-8 + + if "%~1"=="" ( + echo "Services status check..." call :test_service zapret call :test_service WinDivert + echo "Services status check complete!" pause ) else ( + echo "%~1 service status check check..." call :test_service "%~1" "soft" + echo "%~1 service status check complete!" ) + + exit /b :test_service