PowerShell Format-Wide 设置显示的列数

仓廪实则知礼节,衣食足则知荣辱。这篇文章主要讲述PowerShell Format-Wide 设置显示的列数相关的知识,希望能为你提供帮助。
环境配置说明

  • Windows 21H1
  • PSVersion 5.1.19041.1320
【PowerShell Format-Wide 设置显示的列数】
示例
PS C:\\Users\\admin> Get-Service | Select-Object -Property Name -First 25Name ---- AarSvc_31241 AJRouter ALG AppIDSvc Appinfo AppMgmt AppReadiness AppVClient AppXSvc AssignedAccessManagerSvc AudioEndpointBuilder Audiosrv autotimesvc AxInstSV BcastDVRUserService_31241 BDESVC BFE BITS BluetoothUserService_31241 BrokerInfrastructure BTAGService BthAvctpSvc bthserv camsvc CaptureService_31241

PS C:\\Users\\admin> Get-Service | Select-Object -ExcludeProperty Name -First 25 | Format-Wide -Column 4AarSvc_31241AJRouterALGAppIDSvc AppinfoAppMgmtAppReadinessAppVClient AppXSvcAssignedAccessManagerSvcAudioEndpointBuilderAudiosrv autotimesvcAxInstSVBcastDVRUserService_31241BDESVC BFEBITSBluetoothUserService_31241BrokerInfrastructure BTAGServiceBthAvctpSvcbthservcamsvc CaptureService_31241


学习资料
  • PowerShell 版本 + 工具
  • PowerShell/PowerShell
  • 51CTO社区

感恩曾经帮助过 师万物 的人。
学有余力的话,可以了解具有开源、跨平台特性的Powershell Core。
欢迎关注公众号:悟为生心

    推荐阅读