Sometimes, when property names contain very long values, the default displays cuts part of the name, as shown with this command and its output.
[“ellipsis” is the term for the … when a name is truncated] as shown in the example below:
get-service | where {$_.name -match "win"} | sort-object Status -desc
Simply pipe the result to the “ft -auto” cmdlet.
get-service | where {$_.name -match "win"} | sort-object Status -desc | ft -auto
ft is just the abbreviation for format-table, so you could have typed:
get-service | where {$_.name -match "win"} | sort-object Status -desc | format-table -auto
Or as was discussed in my previous blog, you can use the grid view:
get-service | where {$_.name -match “win”} | out-gridview