Examples of using Format-table in English and their translations into Italian
{-}
-
Colloquial
-
Official
-
Medicine
-
Financial
-
Ecclesiastic
-
Ecclesiastic
-
Computer
-
Programming
-
Official/political
For more information, see Format-Table.
Format-Table formats the objects in a table.
You can pipe any object to Format-Table.
The Format-Table command assumes that the nearer a property is
The pipeline operator(_) sends the result to Format-Table.
If the Format-Table command cannot display all the properties,
For example, you may append| Format-Table Name, Members.
The following command uses the Format-Table cmdlet to display the process ID, ProcessName and MachineName(ComputerName) properties of
If the alternate view is a table, use Format-Table.
For example, the following commands use the Format-Table cmdlet to add the PSComputerName property to the output
To display an alternate table view, use Format-Table.
Wildcards work with property names in Format-Table, so the final pipeline element can
Another pipeline operator sends the sorted results to Format-Table.
to pass the module objects to the Format-Table cmdlet, which lists the Name
to send the processes in$p to the Format-Table command.
If you specify the AutoSize parameter when you run the Format-Table command, Windows PowerShell will calculate column widths based on the actual data
with"DHCP," you can use the Property parameter of Format-Table to display only those properties.
The first command uses the Get-SessionConfiguration and Format-Table cmdlets to display only the Name
command to a Format-List or Format-Table command.
The command uses a pipeline operator to send the results to a Format-Table command, which displays only the Name
Events format-table id, description-auto This command lists the event
use the GroupBy parameter of the formatting cmdlets(such as Format-Table[m2] and Format-List[m2]) to group objects.
If you use the Format-Table cmdlet with no property names specified to format the output of the Get-Process
built-in alternate views of the processes available with Format-Table, such as"StartTime" and"Priority", and you can design your own views.
C:\PS> get-service format-table-property Name,
such as Format-Table or Format-List, to format and display selected properties.
C:\PS>$a= get-process C:\PS> get-process-inputobject$a format-table-view priority These commands list
but the property parameters of Format-List and Format-Table will accept a list of property names.
in the$processes variable to the Format-Table cmdlet, which displays the ProcessName
you may want to use Format-Table with the AutoSize and Wrap parameters,