回答请教两个个关于invoke-command结果返回的问题2015年11月3日 来自 Mooser Lee function Log([string]$msg,[switch]$Error){ Write-Host $msg if($Error){ $msg | Out-File "error.txt" -Append } else{ $msg | Out-File "success.txt" -Append }} Log "Yes"Log "Error occurs" -Error