Format-Custom - Powershell 1.0 CmdLet
Microsoft Windows PowerShell is a command-line shell and scripting tool based on the Microsoft .NET Framework. It is designed for system administrators, engineers and developers to control and automate the administration of Windows and applications.
More than hundred command-line tools (so called "cmdlets") can be used to perform system administration tasks and Windows Management Instrumentation (WMI). These cmdlets are easy to use, with standard naming conventions and common parameters, and standard tools for piping, sorting, filtering, and formatting data and objects.
Format-Custom
Description Format output using a customized view Usage Options -property Object[] The object properties to display (in order) Wildcards are permitted. You cannot use -Property and -View in the same command. -inputObject psobject The objects to format. (a variable, command or expression that gets the objects) -view string The name of an alternate format or "view." -groupBy Object Format the output in groups based on a shared property or value. -force Override restrictions that prevent the command from succeeding, without compromising security. Force will override read-only attributes but will not change file permissions. -expand string Where string is either EnumOnly (the default), CoreOnly or Both 'CoreOnly' will format and display properties of the collection object itself, while 'emumOnly' will enumerate and display the object properties. (designed around the ICollection (System.Collections) interface.) -displayError Display errors at the command line. -showError Send errors through the pipeline. -depth int The number of columns in the display. CommonParameters: -Verbose, -Debug,-ErrorAction,-ErrorVariable, -OutVariable. Example(s) List the Winlogon process using a custom view called MyCustomView : PS C:\>get-process Winlogon | format-custom -view MyCustomView