Answers for "Powershell start Job"

1

Powershell start Job

#Powershell
$Param1 = "Hello"
$Param2 = "World"
$Job = Start-Job -ScriptBlock {
    param(
        $FirstWord,
        $SecondWord
    )
    Write-Host "$FirstWord $SecondWord"
} -ArgumentList $Param1, $Param2

Receive-Job -Job $Job -Wait
Posted by: Guest on February-26-2021

Code answers related to "Powershell start Job"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language