I execute this Powershell command:
Get-Process | Out-Host -Paging
But it returns me error:
ut-lineoutput : The method or operation is not implemented. At line:1 char:1 + Get-Process | Out-Host -Paging + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [out-lineoutput], NotImplementedException + FullyQualifiedErrorId : System.NotImplementedException,Microsoft.PowerShell.Commands.OutLineOutputCommand
I have checked help for Out-host and with paging it should be returnig results page by page.
Basically I want to see results page by page not everythign flush. Please help