computing
  • 17

How To Slow Down Command Line Scroll In XP

  • 17

I would like to slow down the scroll speed at the command prompt in windows XP. I don’t wantr to slow down the whole computer, just the scroll speed

Any tips?

Share

1 Answer

  1. You could re-direct the screen output to make a text file of the results, then you’d be able to examine that in Notepad.

    e.g. (command line) > C:\Junk\Script_result_1.txt

    Don’t include the brackets around the command line, space, >, space, the location of where you want the text file.
    The C:\Junk folder would have to exist beforehand.
    You wouldn’t need to make the screen output pause.

    • 0