3

我想在 PowerShell 中使用运行空间池来执行后台操作。但我需要从主线程访问 WPF 窗口变量。

普通运行空间有以下选项:

$runspace.SessionStateProxy.SetVariable('xamGUI',$xamGUI)

但是我如何对 RunspacePool 做同样的事情呢?

4

1 回答 1

7

将变量添加到运行空间池中涉及更多一些,但仍然绝对可行。您将需要创建一个 InitialSessionState 对象,然后创建一个 SessionStateVariableEntry 对象,该对象包含您要添加到运行空间池的变量。

[int]$Test = 123498765
#Create the sessionstate variable entry
$Variable = New-object System.Management.Automation.Runspaces.SessionStateVariableEntry -ArgumentList 'Test',$Test,$Null
$InitialSessionState = [System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault()

#Add the variable to the sessionstate
$InitialSessionState.Variables.Add($Variable)

#Create the runspacepool using the defined sessionstate variable
$RunspacePool = [runspacefactory]::CreateRunspacePool(1,$Throttle,$InitialSessionState,$Host)
于 2016-07-27T17:33:56.133 回答