How to expand enumerated lists in Powershell FT.

Have you ever seen {12,1234,34,124…} in PowerShell, and wondered “how do I get it to display the rest”?

The builtin variable $FormatEnumerationLimit determines how many fields to display, default value is 4.

To change :

 $FormatEnumerationLimit=15

 

Leave a Reply