From ef22d5a4c906f79f9295e694d48af9c736fafbf1 Mon Sep 17 00:00:00 2001 From: Flamur Veliqi Date: Fri, 23 Jan 2026 11:34:46 +0000 Subject: [PATCH] README.md aktualisiert --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9284990..da30dae 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Windows Batch Scripts (WBS) +# Batchr Batch scripts are simple text files (with .bat or .cmd extensions) containing a sequence of Windows command-line instructions. They automate repetitive tasks like file management, program launches, or system configurations by executing commands sequentially via the Command Prompt. ### Menu Launcher ``` -cmd /c "curl -L https://git.weektab.org/companas/batch-scripts/raw/branch/main/wbs.bat -o %TEMP%\wbs.bat && start /wait %TEMP%\wbs.bat & del %TEMP%\wbs.bat" +cmd /c "curl -L https://git.weektab.org/companas/Batchr/raw/branch/main/batchr.bat -o %TEMP%\batchr.bat && start /wait %TEMP%\batchr.bat & del %TEMP%\batchr.bat" ``` -----