home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_03 / 1n03082a < prev    next >
Text File  |  1990-06-28  |  473b  |  26 lines

  1. @echo off
  2. rem
  3. rem FLIP.BAT: Boot-up configuration command
  4. rem              (this version keeps all condition files
  5. rem               in C's root directory)
  6. rem
  7. rem Usage: flip <condition>
  8. rem
  9.  
  10. if not exist c:\%1.ON goto flip1
  11. ren %1.ON %1.OFF
  12. echo %1 boot-up mode disabled.
  13. goto done
  14.  
  15. :flip1
  16. if not exist c:\%1.OFF goto fliperr
  17. ren %1.OFF %1.ON
  18. echo %1 boot-up mode enabled.
  19. goto done
  20.  
  21. :fliperr
  22. echo Neither %1.ON or %1.OFF exist in C's root directory.
  23.  
  24. :done
  25. echo.
  26.