Hello Experts,
I am fetching some details using powershell using REST APIs and i would like to filter the output from that huge list and save it on a text file.
Below is just the part of the script:
foreach ($Incident in $Requests.result) {
$output =$Incident | ft description -Wrap | out-string
}
$output | Out-String | Export-Csv -NoTypeInformation -Path C:\Temp\t.txt
the t.txt file doesnt contain the value i need. It rather shows below info:
"Length"
"536"
I need a way to extract information from Description table and save it on a file for further use.