Hi Chad,



for another task I need values from the powershell script to the workflow.




So I did the following points:



1. Run Script activity


workflow.scratchpad.test = tags.out_data;



2. Run Powershell activity


command field:


$out_data = hostname;


Write-Output "%%out_data%%"


Write-Output "$($out_data)"


Write-Output "%%"



sensor script field:


tags.out_data



Could you tell me what is wrong?