gpt4 book ai didi

powershell - 如何在PowerShell 1.0中使用STA模式?

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

我在PowerShell中非常笨拙,只能在家里用于Windows XP下无法完成PS2升级的简单任务。下一步测试表明,我的PowerShell 1.0默认使用MTA模式。

[threading.thread]::CurrentThread.GetApartmentState()

像...这样的电话
PowerShell.exe –STA c:\scripts\file.ps1

...总是因错误而失败:

Missing expression after unary operator '-'. At line:1 char:2 + -S <<<< TA c:\scripts\file.ps1



看来我的PS1无法识别–STA开关。我做错了什么?有没有办法在PS1的STA模式下运行我的脚本?

最佳答案

命令中STA前面的破折号是“–” Unicode U + 2013“En Dash”,其中应该是“-” Unicode U + 002D“连字符减号”。您可以在浏览器控制台(F12)中使用此JavaScript函数进行尝试:

function getHex(character) {
return "0x" + character.charCodeAt(0).toString(16);
}

getHex('–'); // 0x2013
getHex('-'); // 0x2d

也许您已经从网页,PDF或Word文档中复制了它。尝试键入命令而不是复制/粘贴,它将起作用。

PowerShell的新版本将两个字符都识别为破折号。

关于powershell - 如何在PowerShell 1.0中使用STA模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14723705/

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