我面临的问题是将在 powershell 工作流程中调用的函数的输出记录到日志文件中。
尝试使用 Out-File 但它不应该用于记录特定的函数调用。
对此的任何帮助都会很棒。提前致谢。
附件是有关该问题的示例脚本:
function test1{
param (
[String] $FileName)
Write-Host "$FileName test1"
}
WorkFlow Sample {
$Files = Get-ChildItem 'C:\Users\Downloads\testDir'
Foreach -parallel ( $File in $Files ) {
test1($File) #This function output should be logged
}
}
Sample