我使用无限循环执行脚本,并存储日志。但它会返回此错误
<style>
.k-chart {
height: 250px;
width: 250px;
}
</style>
这是我的代码
seriesDefaults: {
labels: {
visible: false,
background: "transparent",
template: "#= category #: #= value#"
},
padding: 50
},
答案 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-Output
或Read this article并安装KB3014136