Contact Info

Crumbtrail

ActiveXperts.com » Administration » Powershell » Powershell 1.0 » Format-List

Format-List - Powershell 1.0 CmdLet

ActiveXperts Network Monitor ships with integrated Powershell scripts to monitor complex network. The scripts run out of the box
Download the ActiveXperts Network Monitor FREE version now »

Format-List

Description
Format output as a list of properties, each on a new line

Usage


Options


Example(s)
Print a list of running processes, incuding the process name and path:

PS C:\>get-process | format-list -property name, path

Print a list of running processes, incuding all the properties:

PS C:\>get-process | format-list -property *

Print the objects stored in $My_Variable in list format:

PS C:\>format-list -InputObject $My_Variable