Format-Table cmdlet 将命令的输出格式设置为表,表中每列显示对象的选定属性。 对象类型确定每个列中显示的默认布局和属性。 可以使用 Property 参数选择要显示的属性。 PowerShell 使用默认格式化程序定义对象类型的显示方式。 可以使用 .ps1xml 文件创建自定义视图,这些
Format-Table [[-Property] <Object[]>] [-AutoSize] [-RepeatHeader] [-HideTableHeaders] [-Wrap] [-GroupBy <Object>] [-View <string>] [-ShowError] [-DisplayError] [-Force] [-Expand <string>] [-InputObject <psobject>] [<CommonParameters>]Description...
Format-Table [[-Property] <Object[]>] [-AutoSize] [-RepeatHeader] [-HideTableHeaders] [-Wrap] [-GroupBy <Object>] [-View <string>] [-ShowError] [-DisplayError] [-Force] [-Expand <string>] [-InputObject <psobject>] [<CommonParameters>] Description The Format-Table cmdlet formats th...
Format-Table [[-Property] <Object[]>] [-AutoSize] [-RepeatHeader] [-HideTableHeaders] [-Wrap] [-GroupBy <Object>] [-View <string>] [-ShowError] [-DisplayError] [-Force] [-Expand <string>] [-InputObject <psobject>] [<CommonParameters>]Beschreibung...
使用View 参数可以指定表的替代格式。 可以使用 PowerShell 目录中的*.format.PS1XML文件中定义的视图,或者可在新的 PS1XML 文件中创建自己的视图,并使用Update-FormatDatacmdlet 将它们包括在 PowerShell 中。 View参数的替代视图必须使用列表格式;否则,该命令将失败。 如果替代视图为表,请使用Format-Table。 如果替...
使用View 参数可以指定表的替代格式。 可以使用 PowerShell 目录中的*.format.PS1XML文件中定义的视图,或者可在新的 PS1XML 文件中创建自己的视图,并使用Update-FormatDatacmdlet 将它们包括在 PowerShell 中。 View参数的替代视图必须使用列表格式;否则,该命令将失败。 如果替代视图为表,请使用Format-Table。 如果替...
你还可以通过使用 Wrap 参数让较长的 Format-Table 数据在其显示列中自动换行。 仅使用 Wrap 参数不一定会实现所需的操作,因为如果你不同时指定 AutoSize,它会使用默认设置: PS> Get-Process -Name powershell | Format-Table -Wrap -Property Name,Id,Company,Path ...
Windows PowerShell 基本上使用 Format-Table 来格式化 select cmdlet 的输出结果。想看看不同的外观,可以试一下 Format-List:复制 gwmi win32_service | where {$_.StartMode -ne “Disabled”} | select name,startname | format-list 结果有点像这个示例:...
可以使用 PowerShell 目录中的 *.format.PS1XML 文件中定义的视图,或者可在新的 PS1XML 文件中创建自己的视图,并使用 Update-FormatData cmdlet 将它们包括在 PowerShell 中。View 参数的替代视图必须使用列表格式;否则,该命令将失败。 如果替代视图为表,请使用 Format-Table。 如果替代视图不是列表或表,请使用 ...
Namespace: Microsoft.PowerShell.Commands.Internal.Format Assembly: System.Management.Automation.dll Package: System.Management.Automation v7.4.0 C++ Copy public ref class OuterFormatTableBase : Microsoft::PowerShell::Commands::Internal::Format::OuterFormatTableAndListBase...