Hi - Thanks for quick input, audit is switched on however as per my comment the event logs only go back less than 24 hours due to overwrite when required.
Main Topics
Browse All TopicsWindows 2003 mixed mode AD
I am trying to audit a user to see their logins into AD for particular days. At present i can only see tools which displays last logins.
As the Security events only go back less than a day due to size restrictions is there another way to audit AD to get this info?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
From an earlier post of mine:
Another option is to add the lines below to each users logon and log off script to create a log file. It would give you UserName, ComputerName, date and time, in a simple single line, followed by the IP from which they connected, if needed. If you wish to know logoff times as well, you can add the same lines to a log off script in group policy (if you don't already have one: User Configuration | Windows settings | Scripts | Logoff). You likely wont need the last line (IP address) in the log off script.
As written below it will create the log/text file in \\Server\Logs\LogOns.Log and the entries will look like:
Log File
Log On: jdoe SERVER1 Tue 1/1/2007 9:01
TCP 10.0.1.100:3389 66.66.123.123:1234 ESTABLISHED
Log Off: jdoe SERVER1 Tue 1/1/2007 9:31
Log On: jsmith SERVER2 Tue 1/1/2007 11:00
TCP 10.0.1.200:3389 66.66.123.124:1234 ESTABLISHED
Log Off: jsmith SERVER1 Tue 1/1/2007 11:30
--------------------------
:Logging
If Exist "\\Server\Logs\LogOns.Log"
Echo Log File > "\\Server\Logs\LogOns.Log"
:START
Echo. >> "\\Server\Logs\LogOns.Log"
Echo Log On: %USERNAME% %COMPUTERNAME% %Date:~0,16% %Time:~0,5% >> "\\Server\Logs\LogOns.Log"
netstat -an |find "3389" |find /I "established" >> "\\Server\Logs\LogOns.Log"
Try to filter Sucess audit logon events in Security . you will find many software, for event capture .e.g syslog. create one instance related to user login. So everytime if users login to domain , it will trigger a alert.
If you want mail, configure SMTP, so that it will sent the trigger to your account.
Yes, would help if i said it correctly too ;-) ADAUDIT
I had to register for free to get the beta of ADAUDIT and got a new link back within 20 minutes. Have a look here... its good stuff!
http://manageengine.advent
Thought that you were referring to this at first.
BTW, did you see the pricing for that adaudit?
Business Accounts
Answer for Membership
by: nsx106052Posted on 2008-12-23 at 06:15:28ID: 23233624
I would start by making sure audit logons is turned on. Then export the security log to a text file and search by username. This is going to be time consuming but it is one way of finding when a user logs in.
There are programs out there that will do this but most of them are some what expensive. If I can find any free ones I will try to list them.