使用 PowerShell Get-WinEvent 或 Get-WMIObject 查询 Windows 更新错误

Querying Windows Update Errors using PowerShell Get-WinEvent or Get-WMIObject

尝试使用 Get-WinEvent 创建一个简单的 Windows 更新错误查询(尽管我更喜欢查询 WMI 对象以用于 SCUP):

get-winevent -logname System| Where-Object {$_.ProviderName -eq "Microsoft-Windows-WindowsUpdateClient"}

这似乎在大多数情况下都有效。但是,它仅 returns 信息事件而不是错误。这些位于其他地方吗?如果是,我将如何查询它们?对于某些背景,在我的环境中 Windows 10 台机器中大约有 10% 的机器(缺少程序集文件)发生了特定的更新失败,我想定位它以便我可以部署解决方案。

使用 Get-WinEvent 的解决方案很好,但如果可能的话我更喜欢使用 Get-WMIObject。

您可以像这样使用 Win32_NTLogEvent

Get-WmiObject Win32_NTLogEvent |?{($_.LogFile -eq 'System') -and ($_.SourceName -eq 'Microsoft-Windows-WindowsUpdateClient') }

注意:您可以使用 Type 进一步过滤,这将告诉您有关信息或错误或警告的信息。

希望对您有所帮助。

我找不到任何实际说明这一点的内容,但看起来 Get-WinEvent 默认情况下只有 return 的信息消息。如果你想看到另一个,那么你需要告诉 return 那些。一种方法是使用 -FilterHashtable.

Get-WinEvent -FilterHashtable @{LogName='System';Level=1,2}

那 return 只有警告和错误。

1 - 错误

2 - 警告

4 - 信息

您可以查看枚举 [System.Diagnostics.EventLogEntryType] 以了解我从哪里得到这些数字。

Looking at MS你可以看看哈希表过滤器支持什么..

LogName=<String[]>
ProviderName=<String[]>
Path=<String[]>
Keywords=<Long[]>
ID=<Int32[]>
Level=<Int32[]>
StartTime=<DateTime>
EndTime=<DataTime>
UserID=<SID>
Data=<String[]>
*=<String[]>

如果您的 WMI 查询有类似的问题,那么您可以这样做

Get-WmiObject -class Win32_NTLogEvent -filter "(logfile='Application') AND (type='error')" 

你可以找到一些切向的例子here

编写 WMI 查询(这会覆盖奇怪的事件类型过滤器):

Get-WmiObject -Query "Select * from Win32_NTLogEvent" |?{(($_.LogFile -eq 'System') -and ($_.Type -in ("Error", "Warning"))) -and ($_.SourceName -eq 'Microsoft-Windows-WindowsUpdateClient') }

好的,在做了一些额外的研究之后,我偶然发现了 this website,它阐明了我 运行 所关注的问题。本质上,虽然大多数(如果不是全部)Windows 事件都记录在 C:\Windows\System32\Winevt\logs 文件夹中,但并非所有 Windows 默认情况下,事件在 WMI 中复制。

在 PowerShell 中,Get-WinEvent 在查询其事件数据时似乎使用上述文件夹,而 Get-EventLog 使用 Win32_WinNTLogEvent WMI class.

在我原来的问题中,我提到我无法使用 Get-WinEvent 查询 Windows 更新错误事件。这是因为我指向 System 日志文件,其中不包含该信息。 Microsoft-Windows-WindowsUpdateClient/Operational 日志文件(文字路径为 C:\Windows\System32\Winevt\logs\Microsoft-Windows-UpdateClient%4Operational.evtx ) 确实包含此信息,因此我的查询可以简单地使用类似于以下内容的内容进行更改:

Get-WinEvent -logname "Microsoft-Windows-WindowsUpdateClient/Operational" | Where-Object {$_.LevelDisplayName -eq "Error"}

为了使用 Win32_NTLogEvent WMI class 查询 Get-WinEvent 返回的相同数据,注册表必须首先是 mod化。同样,我在此答案中发布的 link 更详细地描述了该过程,但实际上我执行了以下注册表 mod:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\Microsoft-Windows-WindowsUpdateClient/Operational]
"File"="%SystemRoot%\System32\Winevt\Logs\Microsoft-Windows-WindowsUpdateClient%4Operational.evtx"
"Primary Module"="Microsoft-Windows-WindowsUpdateClient/Operational"
"Microsoft-Windows-WindowsUpdateClient/Operational"=hex(2):25,00,53,00,79,00,73,00,74,\
  00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,\
  65,00,6d,00,33,00,32,00,5c,00,77,00,65,00,76,00,74,00,61,00,70,00,69,00,2e,\
  00,64,00,6c,00,6c,00,00,00

注:最后的"Microsoft-Windows-WindowsUpdateClient/Operational"扩展字符串(REG_EXPAND_SZ)指向% SystemRoot%\system32\wevtapi.dll

注册表mod化后,我就可以按如下方式查询错误事件:

Get-WmiObject -query "SELECT * FROM Win32_NTLogEvent WHERE LogFile='Microsoft-Windows-WindowsUpdateClient/Operational' AND Type='Error'"

考虑到 Windows 更新错误应该 可能 默认情况下出现在 Win32_NTLogEvent WMI class 中有点痛苦(啊,微软)。不过,这基本上解决了我的问题。

还有一点要提。上面的网站指出,在编辑注册表后,您将能够立即查询新事件。我必须先重启我的机器。