REM -- #New:08.01.2026/J.Fes Prints Script Infos
REM -- #LUp:23.01.2026/J.Fes add JobScriptDes_c
REM -- #Doc: P1 required P2 ... Pn Optional
REM -- #Exa: call EchoScriptHeader.cmd "%~0" "#Date#.01" "%Autor%" "Desc:#Todo:Info about what this script is doing"

if "%~1" equ "" goto :eof
set JobScriptDes_c=%~n1

Call Echo2 "****"
 Call Echo2 "*" "Excuting....: %~nx1"

shift
if "%~1" equ "" goto :myEnd
 Call Echo2 "*" "Version.....: V%~1"

shift
if "%~1" equ "" goto :myEnd
 Call Echo2 "*" "Autor.......: %~1"

shift
if "%~1" equ "" goto :myEnd
 set JobScriptDes_c=%~1
 Call Echo2 "*" "Description.: %~1"

shift
:NextHeaderLine
 If "%~1" equ "" goto :myEnd
 Call Echo2 "*" "%~1"
 shift
 goto :NextHeaderLine

:myEnd
Call Echo2 "****"
goto :eof



