I'm running Get-DnsServerforwarder -comp dc01
and the results are
UseRootHint : True
Timeout(s) : 3
EnableReordering :
IPAddress : {xx.xxx.x.xxx, xx.xxx.x.xxx, xx.xxx.x.xxx, xx.xxx.x.xxx..}
ReorderedIPAddress :
I added $FormatEnumerationLimit =-1 to my PS Profile and it gave me the results I needed.
UseRootHint : True
Timeout(s) : 3
EnableReordering :
IPAddress : {xx.xxx.x.xxx, xx.xxx.x.xxx, xx.xxx.x.xxx, xx.xxx.x.xxx, xx.xxx.x.xxx}
ReorderedIPAddress :
However, when I run the Get-DnsServer -comp dc01 command, which gives a collection of DNS results, the values in ServerForwarder section are still truncated like before. Is there a way to make those results fully expand like when running the stand-alone
(get-DnsServer) command? Is there another $format setting I need to add to my profile?