@wolandy2k
Thank you for posting the PowerShell script. For everyone's benefit, I was pulling my hair out because of a PIBKAC error:
Enter Path to dumpfile.csv: Downloads
Enter IP of Source Domain Controller: 10.132.39.105
Exception calling "OpenText" with "1" argument(s): "Access to the path 'C:\Users\adminuser\Downloads' is denied."
At C:\PerfMonDCS.ps1:36 char:48
+ $LogfileReader = [System.IO.File]::OpenText(“$($LogFileName)”)
+ ~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : UnauthorizedAccessException
Turns out, you need to specify the dumpfile.csv filename as well as the path to the file. The dumpfile.csv is created per the instructions above
Tracerpt -l “file.etl” -of CSV
In other words, the correct response to the PowerShell prompt is C:\Users\adminuser\Downloads\dumpfile.csv