我正在尝试使用 Powershell 远程运行脚本,该脚本仍在运行,但我收到一个错误Invoke Command : Window Title cannot be longer than 1023 characters.
这是我的代码:
Invoke-Command -ComputerName Test -FilePath "\\Some\File\Path.ps1"
我意识到在 ISE 中运行该行时会发生什么,它将comments in the header
脚本放入文件名中。有没有办法阻止这种行为?我可以使用ErrorAction SilentlyContinue
抑制错误的选项,但它也会抑制所有其他不理想的错误。