Azure-Runbook:将cmdlet的输出抑制为摘要或历史记录

时间:2015-07-01 09:20:34

标签: powershell azure automation

在Azure-Runbook中,如何抑制cmdlet的输出显示在摘要或历史记录日志中?

例如

Start-AzureVM -Name ...

发出类似

的内容
PSComputerName        : localhost
PSSourceJobInstanceId : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Id                    : azure_adm@foo.com 
Type                  : User
Subscriptions         : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Tenants               : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
PSComputerName        : localhost
PSSourceJobInstanceId : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
OperationDescription  : Start-AzureVM

摘要。

2 个答案:

答案 0 :(得分:0)

您可以使用" out-null"在Azure-Runbooks中仅在" InlineScript {}"

答案 1 :(得分:0)

如果将输出分配给变量,则不会将其写入控制台。

尝试像这样将其分配给$null

$null = Start-AzureVM -Name ...