Hello,
Is there a way to set a variable with one particular number line from a Run Powershell script generated variable? Seems like this would be possible, but not sure on the syntax. Thank you.

Hello,
Is there a way to set a variable with one particular number line from a Run Powershell script generated variable? Seems like this would be possible, but not sure on the syntax. Thank you.
Hello @miuy7
You could use action "Split text" to split PowerShell output line by line.
Then you can refer the specific index of list items (line number beggining from 0) using %TextList[1]% format.
Also if you just want to remove unwanted line breaks from the output results, you would like to use %PowershellOutput.Trimmed% to get the actual content from your PowerShell output.
Thank you.