Files
SillyTavern-Launcher/bin/functions/launch/exit_stl.bat
deffcolony 406ed696b5 launcher upgrades
+seperated backup into bat files
+fixed some path issues
2024-07-08 11:23:13 +02:00

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