如果我们从powershell运行作业,我们可以捕获日志吗?

时间:2014-04-11 06:31:38

标签: powershell control-m

如果我们从power shell运行作业,我们可以捕获日志吗?当我们尝试从Windows服务器2008运行一个control-m作业并且它失败时,我们试图从power shell运行它。有没有办法捕获日志,因为作业在电源外壳中也失败了?

1 个答案:

答案 0 :(得分:0)

您可以使用Start-Transcript记录脚本的操作/输出。您需要确保运行脚本的用户具有对输出位置的写访问权。

Start-Transcript -Path 'C:\path\to\transcript.log' -Append

# production code here

Stop-Transcript