Get-EventLog - valid message missing for some event log sources

[亡魂溺海] 提交于 2019-12-05 10:27:30

Not sure on the how or why, but it looks like if you opt for Get-WinEvent rather than Get-EventLog you'll get the info you're after.

It should be noted that when changing commands the 'Source' parameter is known as 'ProviderName' so your command becomes:

Get-WinEvent -LogName System | Where { $_.ProviderName -eq 'Microsoft-Windows-Kernel-General' }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!