Summary: Learn how to keep content from scrolling off the Windows PowerShell console.
How can I keep content from scrolling off the Windows PowerShell console and, instead, display content a page at a time?
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