PowerTip: Keep Output from Scrolling Off the PowerShell Console

Doctor Scripto

Summary: Learn how to keep content from scrolling off the Windows PowerShell console.

Hey, Scripting Guy! Question How can I keep content from scrolling off the Windows PowerShell console and, instead, display content a page at a time?

Hey, Scripting Guy! Answer Pipe the results to the More function to display content in the Windows PowerShell console one page at a time. Keep in mind that the More function does not work inside the Windows PowerShell ISE, as shown here.

Get-Command * -CommandType cmdlet | more

0 comments

Discussion is closed.

Feedback usabilla icon