Ask Your Question
4

How can PowerShell be used to extract the last login date of inactive users for exporting?

asked 2022-07-20 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-09-01 01:00:00 +0000

lalupa gravatar image

To extract the last login date of inactive users for exporting using PowerShell, you can use the Get-ADUser cmdlet and the LastLogonDate attribute. You can also filter the results to show only inactive users using the LastLogonDate attribute.

Here is an example script that extracts the last login date of inactive users and exports the data to a CSV file:

$inactiveDays = 90 # Number of days of inactivity
$exportPath = "C:\Users\Username\Documents\InactiveUsers.csv" # Export file path

# Get inactive users
$inactiveUsers = Get-ADUser -Filter {LastLogonDate -lt (Get-Date).AddDays(-$inactiveDays)} -Properties LastLogonDate | Where-Object {$_.Enabled -eq $true}

# Select required properties and export to CSV
$inactiveUsers | Select-Object Name, SamAccountName, LastLogonDate | Export-Csv $exportPath -NoTypeInformation

Note: This script assumes that you have the Active Directory module installed on your computer. If not, you can install it by following the instructions on the Microsoft website.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-07-20 11:00:00 +0000

Seen: 11 times

Last updated: Sep 01 '21