Hi @Manikandan Sankar ,
You can get Inactive users in AD based on the last login time using PowerShell.
# import module ServerManager
Import-Module ServerManager
# install RSAT
Install-WindowsFeature -Name "RSAT-AD-PowerShell" -IncludeAllSubFeature
# import ActiveDirectory Module
Import-Module ActiveDirectory
# set the date (the number of days)
$NumberOfDays = 30
# set the timeframe ranging for the amount of days entered
$TimeRange = (Get-Date).Adddays(-($NumberOfDay))
# checks for inactive users within 30 days timeframe
Get-ADUser -Filter {LastLogonTimeStamp -lt $TimeRange } -Properties * | Select Name, LastLogonDate | Export-Csv InactiveActiveDirectoryUsers.csv -NoTypeInformation
You can set the NumberOfDays you want.
For more information, please refer to:
Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.