mirror of
https://github.com/SillyTavern/SillyTavern-Launcher.git
synced 2026-04-24 08:19:08 +00:00
12 lines
233 B
Batchfile
12 lines
233 B
Batchfile
@echo off
|
|
REM Set base directory
|
|
|
|
:exit
|
|
echo %red_bg%[%time%]%reset% %red_fg_strong%Terminating all started processes...%reset%
|
|
for /f %%a in ('type "%log_dir%pids.txt"') do (
|
|
taskkill /F /PID %%a
|
|
)
|
|
del "%log_dir%pids.txt"
|
|
exit
|
|
|