AD | Application | AWS | Azure | Cloud | Database | Enterprise | Environmental | Event Log | File System | IoT | IT Service | Network/System | NIS2 | Infra | Performance | Protocol | SaaS | Security | Service Level | Storage | Linux | VMware | VoIP | Web | Wireless | SNMP

MonitorTools.com » Administration » Powershell » Powershell 1.0 » Format-Wide

Format-Wide - 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-Wide

Description
Format output as a table listing one property only

Usage


Options


Example(s)
Display filenames in the current directory in 3 columns:

PS C:\>get-childitem | format-wide -column 3

Display registry key names, the default property "Name" is the full registry pathname:

PS C:\>get-childitem HKCU:\software\microsoft | format-wide -autosize

Display registry key names:

PS C:\>get-childitem HKCU:\software\microsoft | format-wide -property pschildname -autosize


M