Find All Event LogsThis script will return the locations of all event logs on a computer.
Added 276 days ago by Emnico
| Download | |
| Review | ||
| Back | ||
| 38 | Views |
Source code
$computer = "LocalHost" $namespace = "root\CIMV2" Get-WmiObject -class Win32_NTEventlogFile -computername $computer -namespace $namespace

