以下命令不显示错误消息,这是我想要的:
Copy-Item "C:\Folder I Have Access To\*" "C:\Folder I Do Not Have Access To" -ErrorAction SilentlyContinue
以下命令确实显示了错误消息,这不是我想要的:
Copy-Item "C:\Folder I Have Access To\*" "C:\Folder I Do Not Have Access To" -Force -ErrorAction SilentlyContinue
这是因为我使用的是“Force”参数。有没有一种方法可以使用“Force”参数并且仍然不显示错误消息?
最佳答案
首先添加。
$ErrorActionPreference = "silentlycontinue"
关于powershell - PowerShell:ErrorAction设置为 “SilentlyContinue”不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6346108/