If you have a problem with size of powershell command output take this
get-process | ft processname -autosize
or get-process | ft processname -autosize | out-file -width 1000 -filepath
next nice output feature is out-gridview
start powershell as administrator and install feature
import-module servermanager
add-windowsfeature powershell-ISE
now you can run this output command
get-service | out-gridview