Многоточие в выводе PowerShell в табличном формате. Как исправить?
Когда PowerShell выводит информацию в табличном формате, некоторые строки не влезают в ширину столбца и происходит обрезание контента. Как сделать так, чтобы PowerShell подстраивал ширину столбца под размер контента?
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 будет подстраивать ширину столбца под размер содержимого.
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