-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop.bat
More file actions
32 lines (27 loc) · 868 Bytes
/
stop.bat
File metadata and controls
32 lines (27 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
REM ============================================================
REM SmartDoc AI - Stop Script
REM One-click stopper for Windows
REM ============================================================
echo.
echo ========================================
echo SmartDoc AI - Stopping Application
echo ========================================
echo.
echo [STOP] Stopping Electron Frontend...
taskkill /F /IM electron.exe 2>NUL
echo [OK] Frontend stopped
echo.
echo [STOP] Stopping Python Backend...
taskkill /F /IM python.exe /FI "WINDOWTITLE eq SmartDoc Backend*" 2>NUL
echo [OK] Backend stopped
echo.
echo [STOP] Stopping Ollama...
taskkill /F /IM ollama.exe 2>NUL
echo [OK] Ollama stopped
echo.
echo ========================================
echo Application Stopped Successfully!
echo ========================================
echo.
timeout /t 2 /nobreak >nul