谁能帮我将以下命令转换为 wmi 查询或 get-wmiobj -filter,因为远程服务器需要更多时间。
Get-EventLog -ComputerName $Comp -LogName System -After (Get-Date).AddDays(-3) -ErrorAction Stop |
? { $_.EntryType -eq "Critical" -or $_.EntryType -eq "Warning" -or $_.EntryType -eq "Error"}
谢谢你的时间。