1234567891011121314151617181920 |
- @call "%~dp0"scripts\config.bat 0 > nul
- if "%Mo-So%"=="J" (
- echo Taeglich Montag - Sonntag
- call c11_reportoutput.bat taeglich
- call versand.bat taeglich.csv
- )
- if "%Wochentag%"=="Mo" (
- echo Jeden Montag
- call c11_reportoutput.bat montags
- call versand.bat montags.csv
- )
- if "%Wochentag%"=="Mo" if "%UngeradeWoche%"=="J" (
- echo Jeden 2. Montag - ungerade KW
- call c11_reportoutput.bat montags_alle_2_Wochen
- call versand.bat montags_alle_2_Wochen.csv
- )
|