home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM This is SPEEDSET.BAT
- REM SPEEDSET.BAT is a teffific tool that lets you speed up keyboards on all
- REM recent systems (by entering an F parameter after SPEEDSET) and slow
- REM keyboards down to a crawl (with an S parameter). If you like it (and
- REM you probaby will), add a CALL SPEEDSET S line to your AUTOEXEC.BAT file
- REM (or just add the MODE CONRATE=32 DELAY=1 line that does the speeding up).
- REM
- IF %1!==! GOTO OOPS
- IF %1!==F GOTO FAST
- IF %1!==f GOTO FAST
- IF %1!==S GOTO SLOW
- IF %1!==s GOTO SLOW
- GOTO OOPS
- :SLOW
- MODE CON RATE=1 DELAY=4
- ECHO Keyboard slowed down.
- GOTO END
- :FAST
- MODE CON RATE=32 DELAY=1
- ECHO Keyboard speeded up.
- GOTO END
- :OOPS
- ECHO Enter %0 F for a fast
- ECHO keyboard or %0 S for a
- ECHO slow on. Afterwards,
- :END
- ECHO Hold down the space bar
- ECHO to see the results . . .
-