Chapter 14. PowerShell type formatting

Adam Driscoll

Type formatting is used to define how a .NET type will be displayed on the PowerShell command line or host. Without the use of formatting a large number of .NET types would prove difficult to read. This chapter focuses on defining a custom formatting file for the PrintSystemJobInfo class. This class defines the print jobs that are in progress on local and remote print servers. The following script outputs all the print jobs on the local machine:

Add-Type –AssemblyName "System.Printing"

foreach($pq in (New-Object -TypeName
   System.Printing.PrintServer).GetPrintQueues()) { $pq.Refresh() $pq.GetPrintJobInfoCollection() ...

Get PowerShell Deep Dives now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.