Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Generate report of all AD users on a PC?

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

2 comments
Date Votes
  • 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.

    0
  • Good suggestion, many thanks!

    0