Is there a way to paginate the output by piping it to some \'more\' command, which is available in linux\\unix shells?
I had exactly this question (well I wanted less, not more) and found the answer of @richard-berg worked for me, being new to PowerShell (but not to Linux), I found the things missing from that answer (for me) were:
I first needed to go:
Find-Package pscx | Install-Package
which then prompted for "installing nuget package". I did this but then had to use the -AllowClobber parameter on Install-Package.
then in order to use less, I had to:
Set-ExecutionPolicy RemoteSigned
which all worked :-)