This tip was printed from the MalekTips Computer and Technology Help and Tips website at http://malektips.com.

Windows XP and DOS - Change the DOS Prompt Size in a Batch File

SUMMARY: Add or reduce lines or columns to/from a DOS prompt in Windows XP.

Need to create DOS batch files in Windows XP where the prompt size is not the standard 25 lines by 80 columns? Perhaps the batch file needs to display large screens of information and extra lines are needed. Or the batch file may be deployed on a system with a large monitor that can handle 170 columns.

To change the width and height of the current DOS prompt in a batch file, use the mode command with the following syntax:

mode con:cols=COLUMNS lines=LINES

For example, to resize the current DOS prompt to 90x30, use the following command:

mode con:cols=90 lines=30

Note that batch files should execute this command before displaying text as this command will clear the current Windows XP/DOS prompt window.


 


Press the "print" button on your browser or select "File" - "Print" to print this tip. Then, return to Windows XP and DOS - Change the DOS Prompt Size in a Batch File
 
Standard disclaimer applies - read http://malektips.com/disclaim.html.