Generate report of all AD users on a PC?
Michael Faucher
Anyone know how I can use PDQ inventory create a report for a monthly log of all active directory users from past 30 days (or other range) including time in/out on a specific computer in the inventory?
Thanks!
0
Comments
Currently no, Inventory logs this if you use the new Agent (double click on PC and look under Agent), but it's not possible to grab this data for a report.
Maybe in the future, you should open a ticket with a feature request for this.
Another way is a GPO with a Login and Logoff script:
Loginscript:
echo logon %username% %computername% %date% %time% >> \path_to_global_logfile\Login_logoff.log
Logoffscript
echo logoff %username% %computername% %date% %time% >> \path_to_global_logfile\Login_logoff.log
Now you have a log file with all login/logoff events (from the day you use this scripts). Use Excel or Power BI and create a report.
Good suggestion, many thanks!