Home » questions » In running a batch file menu what command do you use to freeze a screen before it clears and goes ba

In running a batch file menu what command do you use to freeze a screen before it clears and goes ba

2006-08-10 20:24:11, Category: Programming & Design
I am creating a batch file menu and it displays the contents for a second and goes back to menu

Answers

  1. Jessica Anderson

    On 2006-08-10 20:36:48


    In a DOS batch file, the command is pause. It will display " press any key to continue " then after you press , it will resume the batch file. -- @echo off echo This is a paused batch file pause echo The pause is now gone --