Try this:
Get-ZoomAccountRecordings -AccountId me -From 2020-12-01 -To 2020-12-31 -PageSize 300 | out-string -Width 4096
This will give you a width in your output of 4096 characters. If this is unreadable, you can also tell your environment to change your limit. To find your current enumeration limit:
PS > $FormatEnumerationLimit
The number returned is the limit to the results that can be shown in your output for collections and lists. To change it for your environment, do the following:
PS > $FormatEnumerationLimit=-1
Setting it to -1 will ensure full results display for your terminal when it comes to collections and lists.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…