123456789101112131415161718192021 |
- @call "%~dp0"scripts\config.bat 0 > nul
- call wait.bat 7:30
- if "%Mo-Sa%"=="J" (
- echo Taeglicher Versand [Montag - Samstag]
- call c11_reportoutput.bat taeglich
- call versand.bat taeglich.csv
- )
- if "%Wochentag%"=="Mo" (
- echo Jeden Montag
- call c11_reportoutput.bat montag
- call versand.bat montags.csv
- )
- if "%Wochentag%"=="Mi" if "%UngeradeWoche%"=="J" (
- echo Jeden 2. Mittwoch - ungerade KW
- call c11_reportoutput.bat mittwochs_alle_14Tage
- call versand.bat mittwochs_alle_14Tage.csv
- )
|