Вывод сервисов VPN в диагностиках (#6135)

This commit is contained in:
harmonicano
2025-12-13 13:50:06 +00:00
committed by GitHub
parent 52fd70e98a
commit f3556ec9c8

View File

@@ -451,7 +451,14 @@ echo:
:: VPN
sc query | findstr /I "VPN" > nul
if !errorlevel!==0 (
call :PrintYellow "[?] Some VPN services found. Some VPNs can conflict with zapret"
for /f "tokens=2 delims=:" %%A in ('sc query ^|^ findstr /I "VPN"') do (
if not defined VPN_SERVICES (
set "VPN_SERVICES=!VPN_SERVICES!%%A"
) else (
set "VPN_SERVICES=!VPN_SERVICES!,%%A"
)
)
call :PrintYellow "[?] VPN services found:!VPN_SERVICES!. Some VPNs can conflict with zapret"
call :PrintYellow "Make sure that all VPNs are disabled"
) else (
call :PrintGreen "VPN check passed"