Powershell Script – Get the Most Recent User Login / Logoff Events
- Posted by
- Posted on January 6, 2021
- Computers, Servers
- No Comments.
This great little Powershell script will generate a .csv file, that you can open in excel, which will list each time a user logged in and logged out from the computer or server you run it on.
I believe the only downside is that the list only goes as far back as the logs do on the computer or server you run it on.
Powershell Script
$UserProperty = @{n=”user”;e={(New-Object System.Security.Principal.SecurityIdentifier $_.ReplacementStrings[1]).Translate([System.Security.Principal.NTAccount])}}
$TypeProperty = @{n=”Action”;e={if($_.EventID -eq 7001) {“Logon”} else {“Logoff”}}}
$TimeProeprty = @{n=”Time”;e={$_.TimeGenerated}}
Get-EventLog System -Source Microsoft-Windows-Winlogon | select $UserProperty,$TypeProperty,$TimeProeprty | export-csv -path C:\logs.csv -NoTypeInformation
Recent Posts
- Disable Smart Groups for Tabs in Firefox
- Upgrading to Ubuntu 24.04.02 – ” Oh no! Something went wrong “
- Microsoft Word – Use a VBA Macro to Delete All Images
- Powershell Script – Get the Most Recent User Login / Logoff Events
- How to Set a Static IP Address on a Cisco Switch or Router
Archives
- July 2025
- June 2025
- January 2025
- January 2021
- May 2020
- February 2020
- December 2019
- August 2019
- January 2019
- July 2018
Categories
- Computers
- IT Support
- Lab
- Linux
- Management
- Microsoft Applications
- Networking
- Router
- Servers
- Switch
- Uncategorised
- Windows