Can you find out when a new user was created in Active Directory on Windows 2003 Server?
Solution 1:
In AD Users and Computers, inspecting the Object tab of the user account, there is a Created field.
You would need to select View menu > Advanced to be able to see the Object tab.
Solution 2:
As seen on Technet blogs:
Set objUser = GetObject("LDAP://cn=ken myer, ou=Finance, dc=fabrikam, dc=com")
Wscript.Echo objUser.WhenCreated
Got PowerShell?
Get-ADUser -Identity garys -Properties whenCreated
Solution 3:
you will be get details please check below.
For User account deletion:
· On Windows 2003, we should get Event ID: 630 · On Windows 2008, we should get Event ID: 4726
For User account creation: · On Windows 2003, we should get Event ID: 624 · On Windows 2008, we should get Event ID: 4720