如何在Powershell运行空间中定义函数并执行它

时间:2016-08-04 08:00:21

标签: powershell runspace

我想在powershell中定义一个函数并在不同的运行空间中执行它。 我试过这个:

Function Add-Message {
    param(
    [parameter(mandatory=$true)][String]$pMessage
    )   
    ("--$pMessage--") | Out-File -FilePath "D:\Temp\test.log" -Append           
}

$initialSessionState = [System.Management.Automation.Runspaces.InitialSessionState]::Create()
$definition = Get-Content Function:\Add-Message -ErrorAction Stop   
$addMessageSessionStateFunction = New-Object System.Management.Automation.Runspaces.SessionStateFunctionEntry -ArgumentList 'Add-Message', $definition
$initialSessionState.Commands.Add($addMessageSessionStateFunction)

$newRunspace = [runspacefactory]::CreateRunspace($initialSessionState)
$newRunspace.ThreadOptions = "ReuseThread"  
$newRunspace.Open()
$newPowershell = [PowerShell]::Create()
$newPowershell.AddScript({  
    Add-Message -pMessage "New runspace"
}) | Out-Null
$newPowershell.Runspace = $newRunspace
$newPowershell.BeginInvoke() | Out-Null

“new runspace”消息未出现在test.log文件中 有什么建议可以做这样的事吗? 感谢

1 个答案:

答案 0 :(得分:0)

在您创建初始会话状态时,使用CreateDefault方法而不是Create。如果您没有更多配置来使该会话状态可行。

$initialSessionState = [InitialSessionState]::CreateDefault()

克里斯

编辑:添加了一个示例。