home *** CD-ROM | disk | FTP | other *** search
- @echo off
- whatday
-
- if errorlevel 7 goto seven
- if errorlevel 6 goto six
- if errorlevel 5 goto five
- if errorlevel 4 goto four
- if errorlevel 3 goto three
- if errorlevel 2 goto two
- if errorlevel 1 goto one
-
- goto exit
-
- :seven
- echo Errorlevel 7
- rem Insert your Saturday activities here
- goto exit
-
- :six
- echo Errorlevel 6
- rem Insert your Friday activities here
- goto exit
-
- :five
- echo Errorlevel 5
- rem Insert your Thursday activities here
- goto exit
-
- :four
- echo Errorlevel 4
- rem Insert your Wednesday activities here
- goto exit
-
- :three
- echo Errorlevel 3
- rem Insert your Tuesday activities here
- goto exit
-
- :two
- echo Errorlevel 2
- rem Insert your Monday activities here
- goto exit
-
- :one
- echo Errorlevel 1
- rem Insert your Sunday activities here
- goto exit
-
- :exit
-