我对GRPC请求使用了grpcurl命令行工具。我在PowerShell脚本中包含了我的GRPC请求。
当某些请求具有失败状态时,PowerShell脚本将抛出错误。
我想阻止错误在脚本的输出中显示。
我尝试了**-ErrorAction Stop和Try/Catch**方法,但对GRPC请求无效。
下面是PowerShell脚本中我的GRPC请求的一个示例。
$GetParameters = grpcurl -plaintext -import-path <path> -proto service.proto <IP>:<port> descriptors./GetParameters
1条答案
按热度按时间oaxa6hgo1#
这就是如何隐藏外部命令的错误。“%2”是“标准错误”。