特定のワークステーション セットの特定のイベント ID を監視する必要があります。Event ID Monitor : 特定のワークステーション セットの特定のイベント ID を監視します。
$Workstations = gc c:\NotBackedUp\Workstation.txt
foreach ($Workstation in $Workstations)
{
$events = Get-EventLog -ComputerName $Workstation -LogName "Application" | Where-Object {$_.EventID -eq "2"} | Format-List
}
$events >> C:\NotBackedUp\Test.txt
しかし、私は以下のようにエラーを得ることができます、
Get-EventLog : ネットワーク パスが見つかりませんでした。At line:6 文字:15 + ... $events = Get-EventLog -ComputerName $Workstation -LogName "Applica ... + ~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Get-EventLog], IOException + FullyQualifiedErrorId : System.IO.IOException,Microsoft.PowerShell.Commands.GetEventLogCommand