Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2015 07:09 AM
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?