@echo off chcp 65001 >nul REM Hygiene: Recon-Log mit Token entfernen del /q "F:\Coding Stuff\mission-control-2\box_recon.log" 2>nul echo Beende laufende Lucy-Instanz (pocket_server :8130 + Electron/Vite)... powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-CimInstance Win32_Process | Where-Object { $_.CommandLine -match 'pocket_server:app|lucy-desktop|electron-vite' } | ForEach-Object { Write-Output ('kill ' + $_.ProcessId + ' ' + $_.Name); Stop-Process -Id $_.ProcessId -Force -ErrorAction SilentlyContinue }" timeout /t 2 >nul echo. echo Starte Lucy neu (frischer Voice-Server + Client mit erweitertem Umlaut-Fix)... start "" "F:\Coding Stuff\mission-control-2\client\lucy-desktop\start-lucy.cmd" timeout /t 3 >nul echo Fertig.