Thought someone might find this handy.
Here is a simple batch file that can be used with the script plugin or Windows Task scheduler if you want to perform an action only on a specific day.
The echo and pause statements for each day can be removed they were just for testing.
@echo off
for /f %%a in ('date /t') do set DAY=%%a
if %DAY%==Mon goto :mon
if %DAY%==Tue goto :tue
if %DAY%==Wed goto :wed
if %DAY%==Thu goto :thu
if %DAY%==Fri goto :fri
if %DAY%==Sat goto :sat
if %DAY%==Sun goto :sun
:mon
:: put your processing here
echo %day%
pause
exit
:tue
:: put your processing here
echo %day%
pause
exit
:wed
:: put your processing here
echo %day%
pause
exit
:thu
:: put your processing here
echo %day%
pause
exit
:fri
:: put your processing here
echo %day%
pause
exit
:sat
:: put your processing here
echo %day%
pause
exit
:sun
:: put your processing here
echo %day%
pause
exit
This was only tested on XP as I "don't do Vista"
Endless Loop