Last active
December 19, 2021 17:29
-
-
Save neps-in/7f038a160e0f0b50c9b34048f58497bd to your computer and use it in GitHub Desktop.
changemode.bat Change console mode to display as in old DOS Mode to 25 Lines and 80 Columns.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
REM | |
REM FILENAME : DOSMODE.BAT | |
REM | |
REM DESCRIPTION : Change console mode to display as in old DOS Mode | |
REM | |
REM AUTHOR : Napoleon Arouldas S. ([email protected]) | |
REM | |
REM WEB : http://neps.in | |
REM | |
REM DATE WRITTEN : Sunday, October 07, 2007 6:10:58 PM | |
REM | |
REM COMMENTS/REMARKS : Use it, when you would like to have a big pretty looking fonts for your | |
REM cmd shell in windows. Works with windows XP | |
REM | |
REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
MODE CON LINES=25 COLS=80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment