Hello to all
I'd like to create a report or alert in SAM or LEM with all the users of a Windows domain and how many days the have to login to it
Preferably SAM
Is there a way for this?
Thanks in advance
I would start with looking at the PowerShell functions:
Get-ADUser $userName
Get-ADObject -Properties lastLogon
They are both part of the Active Directory PowerShell Module (Active Directory Cmdlets in Windows PowerShell )
Then maybe create PowerShell monitor to poll for user with ($user.LastLogon -gt $time) type logic.
Then maybe create an alert for that monitor, whenever it returns any data.
Hello again
Sorry for the delay of my answer.
Well, with the cmdlets my work is very hard. A colleague of mine found AD Tiny, which gives me the data very easily
Thank for the support and help