From ad6796bd2e36cbcc9fdf2ae766a4a48ff1e8d607 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 29 May 2026 15:13:12 +0200 Subject: [PATCH] start.bat: CMD closes immediately, no console window MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - start "" launches app as detached process → CMD exits right away - pythonw instead of py → no second console window Co-Authored-By: Claude Sonnet 4.6 --- start.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/start.bat b/start.bat index 8dccd47..a4add70 100644 --- a/start.bat +++ b/start.bat @@ -1,2 +1,3 @@ @echo off -py website_scraper.py +cd /d "%~dp0" +start "" pythonw website_scraper.py