home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo
- if x%1 == xON goto turnon
- if x%1 == xOFF goto turnoff
- if x%1 == xon goto turnon
- if x%1 == xoff goto turnoff
- echo Type Help ON to activate the Magic Mirror Help Facility.
- echo Type Help OFF to disable the Magic Mirror Help Facility.
- goto end
- :turnon
- if not exist mm.h01 goto nothere
- ren mm.h01 mm.com
- echo Magic Mirror Help will be activated.
- goto end
- :nothere
- echo Magic Mirror Help is activated.
- goto end
- :turnoff
- if not exist mm.com goto nothere2
- ren mm.com mm.h01
- echo Magic Mirror Help will be disabled.
- goto end
- :nothere2
- echo Magic Mirror Help is disabled.
- :end
- echo on