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