...
The sample below describes a job chain with two steps. Both are running the generic job PowerShellExecutor to run a powershell script within a JobScheduler job.
First Step: set a parameter for the next step in the job chain (powershell_with_parameter_set.ps1)
Code Block |
---|
$A="myParam=PowerShellParam" $A | out-file -encoding ASCII $env:scheduler_return_values get-content $env:scheduler_return_values exit $lastexitcode # to change the policy for using powershell you can use this .adm file: # http://www.microsoft.com/download/en/confirmation.aspx?id=25119 |
Second Step: get the parameter sets in the first step (powershell_with_parameter_get.ps1)
Code Block |
---|
"the parameter from the previous job chain node is '$env:SCHEDULER_PARAM_myParam'" exit $lastexitcode # to change the policy for using powershell you can use this .adm file: # http://www.microsoft.com/download/en/confirmation.aspx?id=25119 |
...