我试图了解为什么此代码将在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
目的是将这段代码用作启动画面的一部分。
答案 0 :(得分:1)
脚本缺少对任何程序集名称的引用,不是ISE中的问题,而是控制台所需的。
Add-Type -AssemblyName PresentationCore, PresentationFramework