Powershell pass variable to start-job

核能气质少年 提交于 2019-11-27 04:49:18

Use the -ArgumentList parameter on Start-Job e.g.:

Start-Job -Scriptblock {param($p) "`$p is $p"} -Arg 'Server1'

In your case:

$pingblock = {param($servername) pathping $servername | Out-File C:\...\ServerPing.txt}
Start-Job $pingblock -Arg Server1

To complement Keith Hill's helpful answer with a PSv3+ alternative:

The $using: scope modifier can be used to reference variables in the caller's scope inside the script block passed to Start-Job, as an alternative to passing arguments (by default, a script block executed as a background job does not see any of the caller's variables or other definitions):

PS> $Servername = 'Server1'; Start-Job { "Targeting server " + $using:ServerName } |
                               Receive-Job -Wait -AutoRemoveJob
Targeting server Server1

Note that the same technique can be used when passing a script block for execution on a remote computer to Invoke-Command - see this question.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!