Get Security Event Logs from Remote Computer
Get-EventLog -LogName Security -ComputerName -Newest 10 | Format-List
Get Security Event Logs from Remote Computer and Output to file
Get-EventLog -LogName Security -ComputerName -Newest 10 | Format-List | Out-File C:\security_log.txt