Files
bili-downloader-web/stop.cmd
T

9 lines
233 B
Batchfile

@echo off
rem 停止 BiliDownloader 本地服务
setlocal
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":8799" ^| findstr LISTENING') do (
taskkill /PID %%a /F >nul 2>nul
)
echo 已停止 BiliDownloader 服务。
exit /b 0