Book Image

Getting Started with Powershell

Book Image

Getting Started with Powershell

Overview of this book

Table of Contents (19 chapters)
Getting Started with PowerShell
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Next Steps
Index

The rules of automatic formatting


PowerShell formatting is somewhat complex and can be confusing at first. In fact, there are only a few basic rules:

  • Format files specify the formatting for specific types

  • Formatting decisions are based on the first object in the pipeline

  • Objects with four or less properties are formatted as tables

  • Objects with five or more properties are formatted as lists

Formatting files

In $PSHOME, there are files whose names end with format.ps1xml. These files are XML files that specify the default formatting specifications for many of the types of objects that you will work with in PowerShell. These files are loaded by the host when the PowerShell session starts. If you write your own format files, you can load them using the Update-FormatData cmdlet. The details of writing your own format files are beyond the scope of this book, but a quick read through the FileSystem.Format.ps1xml file will make some things clear:

In this file, first, we can see that the formatting is selected...