如何使用Powershell无限循环处理日志文件?

时间:2019-07-26 08:18:03

标签: powershell

我使用无限循环执行脚本,并存储日志。但它会返回此错误

     <style>
        .k-chart {
            height: 250px;
            width: 250px;
        }
    </style>

这是我的代码

    seriesDefaults: {
    labels: {
    visible: false,
    background: "transparent",
    template: "#= category #: #= value#"
    },
    padding: 50
        },

1 个答案:

答案 0 :(得分:0)

您不能两次Start-Transcript。 使用Stop-Transcript

如果不确定转录是否正在运行,请输入空白try-catch

try { Stop-Transcript -ErroAction Stop } catch { <# Do Nothing #> }

我个人在交互式测试自动脚本时必须在脚本的开头使用try-catch构造,并且必须在中间手动停止它们。

重要提示:在Windows 8、8.1、2012、2012R2上,可能无法使用转录本将Write-Host登录到日志文件中。使用Write-OutputRead this article并安装KB3014136