Soc*_*lla 4 powershell cmdlets logging powershell-v5.1
我正在使用 PowerShell 5.1,我试图确定为什么Write-Information消息不会显示在由创建的脚本日志中,Start-Transcript除非我设置$InformationPreference为SilentlyContinue. 我想在控制台中显示消息并将它们写入日志文件。
我在这里看了:https : //docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-5.1#informationpreference
然后我决定创建这个脚本来测试写入的内容和时间。请参阅下方的首选项部分Testing explicit behavior with transcripts -------------
Clear-Host
$ErrorActionPreference = "Stop"
try {
Write-Host "Starting transcript"
Start-Transcript -Force -Path "$PSScriptRoot\default.txt"
<#
In PowerShell 5.1 the default behavior is as follows:
$DebugPreference = SilentlyContinue
$InformationPreference = SilentlyContinue
$ProgressPreference = Continue
$VerbosePreference = SilentlyContinue
See the following for more information:
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-5.1
#>
# I am not testing Write-Output as I am not worried about programmatic/pipeline stuff, just contextual messages for end-users or logging
Write-Host "`nTesting default behavior with transcripts --------------------------------`n"
# Setting these just in case I launch this script in a session where a previous script might have modified the preference variables
$DebugPreference = "SilentlyContinue"
$InformationPreference = "SilentlyContinue"
$ProgressPreference = "Continue"
$VerbosePreference = "SilentlyContinue"
Write-Host "Calling Write-Host"
Write-Debug "Calling Write-Debug"
Write-Error "Calling Write-Error" -ErrorAction "Continue"
Write-Information "Calling Write-Information"
Write-Progress "Calling Write-Progress"
Write-Verbose "Calling Write-Verbose"
Stop-Transcript
Start-Transcript -Force -Path "$PSScriptRoot\everything_continue.txt"
Write-Host "`nTesting explicit behavior with transcripts --------------------------------`n"
# Turn everything on
$DebugPreference = "Continue"
$InformationPreference = "Continue" # Setting this to SilentlyContinue makes it show up in the log but not the console. Setting this to 'Continue' makes it show up in the console but not the log.
$ProgressPreference = "Continue"
$VerbosePreference = "Continue"
Write-Host "Calling Write-Host"
Write-Debug "Calling Write-Debug"
Write-Error "Calling Write-Error" -ErrorAction "Continue"
Write-Information "Calling Write-Information"
Write-Progress "Calling Write-Progress"
Write-Verbose "Calling Write-Verbose"
Stop-Transcript
Write-Host "`nResults -------------------------------------------------------------------`n"
# See what actually gets captured and written by the transcriber
$messageTypes = @("Write-Debug", "Write-Error", "Write-Host", "Write-Information", "Write-Verbose")
Write-Host "Default" -ForegroundColor Cyan
$lines = Get-Content "$PSScriptRoot\default.txt"
foreach ($message in $messageTypes) {
if ($lines -like "*Calling $message*") {
Write-Host " $message PRESENT" -ForegroundColor Green
}
else {
Write-Host " $message MISSING" -ForegroundColor Red
}
}
Write-Host "Everything Continue" -ForegroundColor Cyan
$lines = Get-Content "$PSScriptRoot\everything_continue.txt"
foreach ($message in $messageTypes) {
if ($lines -like "*Calling $message*") {
Write-Host " $message PRESENT" -ForegroundColor Green
}
else {
Write-Host " $message MISSING" -ForegroundColor Red
}
}
}
catch {
Write-Host "----------------------------------------------------------------------------------------------------"
Write-Host $_.Exception
Write-Host $_.ScriptStackTrace
Write-Host "----------------------------------------------------------------------------------------------------"
try { Stop-Transcript } catch { }
throw $_
}
Run Code Online (Sandbox Code Playgroud)
您看到的是Windows PowerShell(自 v5.1.17134.590 起)中的一个错误,该错误已在 PowerShell Core 中得到修复(至少自 v6.1.0 起 - 尽管其他与脚本相关的问题仍然存在;请参阅此 GitHub 问题)。
我鼓励您在 Windows PowerShell UserVoice论坛中报告它(请注意,PowerShell GitHub-repo问题论坛仅针对 PowerShell Core 中也存在的错误)。
以下是验证PowerShell 版本中是否存在该错误的方法:
使用下面的代码创建一个脚本并运行它:
'--- Direct output'
$null = Start-Transcript ($tempFile = [io.path]::GetTempFileName())
# Note that 'SilentlyContinue' is also the default value.
$InformationPreference = 'SilentlyContinue'
# Produces no output.
Write-Information '1-information'
# Prints '2-Information' to the console.
Write-Information '2-information' -InformationAction Continue
$null = Stop-Transcript
'--- Write-Information output transcribed:'
Select-String '-information' $tempFile | Select-Object -ExpandProperty Line
Remove-Item $tempFile
Run Code Online (Sandbox Code Playgroud)
存在错误(Windows PowerShell) 时,您将看到:
--- Direct output
2-information
--- Write-Information output transcribed:
INFO: 1-information
Run Code Online (Sandbox Code Playgroud)
也就是说,发生了与预期行为相反的情况:记录记录了它不应该有的调用(因为它没有产生任何输出),并且没有记录它应该有的调用。
此外,记录的输出以 为前缀INFO: ,这也是 PowerShell Core 中已修复的不一致之处。
有没有完整的解决方法,但你可以使用Write-Host在情况下调用你想要在成绩单的输出记录-但这样的呼叫将被记录无条件,首选项变量的值无关$InformationPreference(而Write-Host 正式提供了一个-InformationAction共同的参数,它是忽略)。
修复了错误(PowerShell Core ) 后,您将看到:
--- Direct output
2-information
--- Write-Information output transcribed:
2-information
Run Code Online (Sandbox Code Playgroud)
成绩单现在与直接输出一致。
| 归档时间: |
|
| 查看次数: |
1316 次 |
| 最近记录: |