Appears to work for all instances EXCEPT the 1st Sunday of a mont
-----------------------------------
@echo off
set mydow="Sunday"
set myday=5
if not "%mydow%"=="Sunday" goto NotRightDay
if %myday% <= 7 goto FirstSunRoutine
goto over
:FirstSunRoutine
echo This is the 1st Sunday Routine
goto over
:NotRightDay
echo This is not the 1st Sunday of the month
goto over
ver
echo done
-----------------------------------
@echo off
set mydow="Sunday"
set myday=5
if not "%mydow%"=="Sunday" goto NotRightDay
if %myday% <= 7 goto FirstSunRoutine
goto over
:FirstSunRoutine
echo This is the 1st Sunday Routine
goto over
:NotRightDay
echo This is not the 1st Sunday of the month
goto over
ver
echo done