如何在PowerShell脚本中停止grpcurl中的错误

vyswwuz2  于 2022-11-10  发布在  Shell
关注(0)|答案(1)|浏览(124)

我对GRPC请求使用了grpcurl命令行工具。我在PowerShell脚本中包含了我的GRPC请求。
当某些请求具有失败状态时,PowerShell脚本将抛出错误。
我想阻止错误在脚本的输出中显示。
我尝试了**-ErrorAction StopTry/Catch**方法,但对GRPC请求无效。
下面是PowerShell脚本中我的GRPC请求的一个示例。

$GetParameters = grpcurl -plaintext -import-path <path> -proto service.proto <IP>:<port> descriptors./GetParameters
oaxa6hgo

oaxa6hgo1#

这就是如何隐藏外部命令的错误。“%2”是“标准错误”。

grpcurl 2>$null

相关问题