Is there a way to paginate the output by piping it to some \'more\' command, which is available in linux\\unix shells?
Suggestion: Put the file into a temporary/disposable .txt file, then let the OS invoke your favorite editor, the one that is linked to the .txt extension.
Get-Process | Out-File temp.txt ; .\temp.txt
Note: each time you use this you will overwrite any pre-existent temp.txt file. Pick the file name wisely.
The above is just a basic idea.
Next step would be transforming this into "| more" using aliases or profile functions, etc.
HTH, Marcelo Finkielsztein