Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to page break output in powershell

Tags:

powershell

For example, the command

get-help about_commonparameters

the output will scroll direct to the bottom, every time I have to scroll back to top to read. Is there any cmdlet to view powershell output page by page when the output is too long?

like image 547
Brian Holsen Avatar asked Feb 28 '17 14:02

Brian Holsen


1 Answers

You can pipe your command to More

get-help about_commonparameters | More

or use Out-Host -Paging

get-help about_commonparameters | Out-Host -Paging
like image 132
henrycarteruk Avatar answered Oct 29 '22 02:10

henrycarteruk