Summary: Use the More function to display Windows PowerShell information one page at a time.
How can you cause Windows PowerShell to easily display information one console screen at a time?
Use the More function:
Get-Command –Command cmdlet | select name, module | more
Wow, the More function is cool. Can I use that inside the Windows PowerShell ISE?
No. You can only use the More function inside the Windows PowerShell console.
By the way, how did you know that More was a function, not a cmdlet or a native command?
Use the Get-Command cmdlet:
Get-Command more