Change powershell script to output without ellipses (…)

前端 未结 3 1410
野的像风
野的像风 2021-02-01 03:19

I need some help with the output of the following script so the output doesn\'t show with the ellipses (...). I tried to insert | Format-Table -Wrap -AutoSize but I

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-01 04:06

    Either Format-List (fl) or Format-Table -auto (ft -auto) should help here.

    $services | fl
    

    OR

    $services | ft -auto
    

提交回复
热议问题