mirror of
https://github.com/SillyTavern/SillyTavern-Launcher.git
synced 2026-03-10 22:09:47 +00:00
11 lines
212 B
Batchfile
11 lines
212 B
Batchfile
@echo off
|
|
|
|
: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
|
|
|