add debug params

This commit is contained in:
duffyduck 2026-01-07 15:20:16 +01:00
parent c32157bfda
commit 479b365ebb
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,13 @@
@echo off
setlocal EnableDelayedExpansion
REM DEBUG: Zeige was ankommt
echo Argument 1: %~1 > "%TEMP%\freigabe_debug.txt"
echo Argument 2: %~2 >> "%TEMP%\freigabe_debug.txt"
echo Argument 3: %~3 >> "%TEMP%\freigabe_debug.txt"
echo Argument 4: %~4 >> "%TEMP%\freigabe_debug.txt"
echo Alle Args: %* >> "%TEMP%\freigabe_debug.txt"
set "action=%~1"
set "filepath=%~2"
set "scriptdir=%~dp0"