gpt4 book ai didi

powershell - 无法从Powershell控制台运行Powershell 'runspace'

转载 作者:行者123 更新时间:2023-12-03 00:00:50 25 4
gpt4 key购买 nike

我试图理解为什么此代码将在Powershell ISE中运行,而不是在Powershell控制台中运行

function close-window (){
# close
$hash.window.Dispatcher.Invoke("Normal",[action]{ $hash.window.close() })
# clean up
$powershell.EndInvoke($handle) | Out-Null
$runspace.Close() | Out-Null
$powershell.Dispose() | Out-Null
}

$hash = [hashtable]::Synchronized(@{})
$runspace = [runspacefactory]::CreateRunspace()
$runspace.ApartmentState = "STA"
$Runspace.ThreadOptions = "ReuseThread"
$runspace.Open()
$runspace.SessionStateProxy.SetVariable("hash",$hash)
$Powershell = [PowerShell]::Create()
$powershell.AddScript({
$xaml = [xml]@"
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="Window" Title="Splash Screen" WindowStyle="None" WindowStartupLocation="CenterScreen"
Width="499" Height="272" BorderBrush="#FF2AA0F1" ShowInTaskbar = "False" AllowsTransparency="True"
ResizeMode = "NoResize" BorderThickness="1" >
</Window>
"@

$reader = New-Object System.Xml.XmlNodeReader $xaml
$hash.window = [Windows.Markup.XamlReader]::Load($reader)
$hash.window.Add_MouseRightButtonUp({ $hash.window.close() })
$hash.window.ShowDialog()
})

$Powershell.Runspace = $runspace
$handle = $Powershell.BeginInvoke()

从ISE运行它,您会看到XAML窗口出现的预期结果。
保存文件并从控制台运行它,它会以静默方式失败
将其复制并粘贴到控制台中,它会以静默方式失败。

它包含一个带有同步哈希表的运行空间
因为它是XAML,所以我将运行空间作为单线程单元启动。
从控制台运行时,尝试过MTA和STA

目的是将这段代码用作启动屏幕的一部分。

最佳答案

该脚本缺少对任何程序集名称的引用,这不是ISE中的问题,但对于控制台而言是必需的。

 Add-Type -AssemblyName PresentationCore, PresentationFramework

关于powershell - 无法从Powershell控制台运行Powershell 'runspace',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30392577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com