gpt4 book ai didi

powershell - 在我的命令中使用ErrorAction Silentlcontinue后出现错误

转载 作者:行者123 更新时间:2023-12-02 23:10:34 25 4
gpt4 key购买 nike

使用-Erroraction Silentcontinue后,我仍然遇到错误。这是我正在使用的命令:

 get-childitem c:\ -include *.bak -recurse | foreach ($_) {remove-item $_.fullname } -ErrorAction SilentlyContinue -ErrorVariable a

最佳答案

您可能会在Get-ChildItem cmdlet中检索错误。因此,您也应该在其中添加参数(-ea 0-ErrorAction SilentlyContinue的别名)。

另外,由于Foreach-Object cmdlet采用管道对象,因此在代码中不再使用Remove-Item cmdlet:

Get-ChildItem c:\ -include *.bak -recurse -ea 0 |  Remove-Item -ea 0

关于powershell - 在我的命令中使用ErrorAction Silentlcontinue后出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43270934/

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