home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 197 / DOS5BAT.ZIP / SPEEDSET.BAT < prev   
Encoding:
DOS Batch File  |  1991-11-03  |  836 b   |  30 lines

  1. @ECHO OFF
  2. REM This is SPEEDSET.BAT
  3. REM SPEEDSET.BAT is a teffific tool that lets you speed up keyboards on all
  4. REM recent systems (by entering an F parameter after SPEEDSET) and slow
  5. REM keyboards down to a crawl (with an S parameter). If you like it (and
  6. REM you probaby will), add a CALL SPEEDSET S line to your AUTOEXEC.BAT file
  7. REM (or just add the MODE CONRATE=32 DELAY=1 line that does the speeding up).
  8. REM
  9. IF %1!==! GOTO OOPS
  10. IF %1!==F GOTO FAST
  11. IF %1!==f GOTO FAST
  12. IF %1!==S GOTO SLOW
  13. IF %1!==s GOTO SLOW
  14. GOTO OOPS
  15. :SLOW
  16. MODE CON RATE=1 DELAY=4
  17. ECHO Keyboard slowed down.
  18. GOTO END
  19. :FAST
  20. MODE CON RATE=32 DELAY=1
  21. ECHO Keyboard speeded up.
  22. GOTO END
  23. :OOPS
  24. ECHO Enter %0 F for a fast
  25. ECHO keyboard or %0 S for a
  26. ECHO slow on. Afterwards,
  27. :END
  28. ECHO Hold down the space bar
  29. ECHO to see the results . . .
  30.