Here's two options for sending inputs for them
Scenario 1: Sending a string with all of our values and splitting them to an array when inside the scriptblock.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$inputString = "text1;text2;text3" | |
start-job -ArgumentList $inputString -ScriptBlock { | |
$listItems = @($args[0]).split(";") | |
write-output "I got $($listItems.count) items with me..." | |
foreach ($listItem in $listItems) { | |
write-output "Item: $listItem" | |
} | |
} -Name "Test" | |
get-job |where-object {$_.name -like "Test"} |receive-job -AutoRemoveJob -wait |
Scenario2: Sending an object as input. Handy for configs and saves the need to define variablenames.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ScriptPath = $(split-path -Parent $MyInvocation.MyCommand.Definition) | |
$inputs = new-object PSObject -Property @{url="Test48"; State="Added";scriptPath=$ScriptPath} | |
start-job -InputObject $inputs -ScriptBlock { | |
$data = @($input) | |
write-output "My output: $($data)" | |
write-output "url: $($data.url)" | |
write-output "state: $($data.state)" | |
write-output "scriptpath: $($data.scriptpath)" | |
} -Name "Test" | |
get-job |where-object {$_.name -like "Test"} |receive-job -AutoRemoveJob -wait |