@echo off
rem ---------------------------------------------------------------------------
rem  Sellers reinstall.bat - intentionally neutralised (sellers-qwe, 2026-08-02)
rem
rem  The previous content of this file was dangerous:
rem    1. it disabled every Sellers\* scheduled task,
rem    2. downloaded SellersTool.zip from https://weauto23.com/tmp/ - a domain
rem       that no longer resolves, so the download always failed,
rem    3. and only re-enabled the tasks after that failed download.
rem  Running it by accident therefore left every scheduled task disabled with
rem  no Sellers.exe left running to repair the situation.
rem
rem  Updating the batch is now done in-process by Sellers.exe
rem  (Update\BatchUpdater.cs + update\apply_update.ps1). The task scheduler is
rem  never touched. See docs/batch_autoupdate.md.
rem
rem  This file is kept - not deleted - because set.bat still runs
rem  "curl -O https://weauto-sellers.com/tmp/reinstall.bat". The distribution
rem  directory rewrites unknown paths to the /TOOL3/ SPA and answers HTTP 200,
rem  so removing the file would make set.bat save that HTML page under this
rem  name instead of failing.
rem
rem  ASCII only on purpose: cmd.exe reads this file with the OEM code page.
rem ---------------------------------------------------------------------------
echo [reinstall.bat] This script is no longer used.
echo [reinstall.bat] Batch updates are applied automatically by Sellers.exe.
echo [reinstall.bat] Nothing to do - exiting without changing anything.
exit /b 0
