使用VS代码版本:1.44.2(系统设置程序)。
$error.clear()
Write-Host "this is the error message"
Write-Host "the result is $($?)"
$null -eq $LASTEXITCODE
Write-Host "lec is $($LASTEXITCODE)"
$LASTEXITCODE
在开始调试之前,我已经使用了$ error.Clear()。
PS C:\src\t> $error.clear()
PS C:\src\t> $error
PS C:\src\t> c:\src\t\Trap.ps1
### debugging started, beak on first statement, $error already has an entry
[DBG]: PS C:\src\t> $error
The term '__Invoke-ReadLineForEditorServices' is not recognized as the name of a cmdlet, function,
script file, or operable program. Check the spelling of the name, or if a path was included, verify
that the path is correct and try again.
[DBG]: PS C:\src\t>
答案 0 :(得分:0)
这是一个官方的错误,众所周知,尚未修复。
https://github.com/PowerShell/PowerShellEditorServices/issues/1295