Многоточие в выводе PowerShell в табличном формате. Как исправить?

Когда PowerShell выводит информацию в табличном формате, некоторые строки не влезают в ширину столбца и происходит обрезание контента. Как сделать так, чтобы PowerShell подстраивал ширину столбца под размер контента?

Терминал
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
Get-Service -DisplayName 'win*'

Status   Name               DisplayName
------   ----               -----------
Running  AudioEndpointBuil… Windows Audio Endpoint Builder
Running  Audiosrv           Windows Audio
Running  EventLog           Windows Event Log
Running  FontCache          Windows Font Cache Service
Stopped  FrameServer        Windows Camera Frame Server
Stopped  FrameServerMonitor Windows Camera Frame Server Monitor
Stopped  icssvc             Windows Mobile Hotspot Service
Running  LicenseManager     Windows License Manager Service
Stopped  MixedRealityOpenX… Windows Mixed Reality OpenXR Service
Running  mpssvc             Windows Defender Firewall
Stopped  msiserver          Windows Installer
Stopped  perceptionsimulat… Windows Perception Simulation Service
Stopped  PushToInstall      Windows PushToInstall Service
Stopped  SDRSVC             Windows Backup
Running  SecurityHealthSer… Windows Security Service

При вводе команды, необходимо добавить к Format-Table параметр -AutoSize. Тогда PowerShell будет подстраивать ширину столбца под размер содержимого.

Терминал
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
Get-Service -DisplayName 'win*' | Format-Table -AutoSize

Status  Name                  DisplayName
------  ----                  -----------
Running AudioEndpointBuilder  Windows Audio Endpoint Builder
Running Audiosrv              Windows Audio
Running EventLog              Windows Event Log
Running FontCache             Windows Font Cache Service
Stopped FrameServer           Windows Camera Frame Server
Stopped FrameServerMonitor    Windows Camera Frame Server Monitor
Stopped icssvc                Windows Mobile Hotspot Service
Running LicenseManager        Windows License Manager Service
Stopped MixedRealityOpenXRSvc Windows Mixed Reality OpenXR Service
Running mpssvc                Windows Defender Firewall
Stopped msiserver             Windows Installer
Stopped perceptionsimulation  Windows Perception Simulation Service
Stopped PushToInstall         Windows PushToInstall Service
Stopped SDRSVC                Windows Backup
Running SecurityHealthService Windows Security Service