Can you find out when a new user was created in Active Directory on Windows 2003 Server?

574

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

Share:
574

Related videos on Youtube

Chris
Author by

Chris

Updated on September 18, 2022

Comments

  • Chris
    Chris over 1 year

    I'm writing data to a characteristic with:

    [peripheral writeValue:data forCharacteristic:characteristic type:CBCharacteristicWriteWithResponse];
    

    How do I get the response?

  • jscott
    jscott almost 12 years
    +1 And for those that don't like clicking: dsquery * -filter "(SamAccountName=jscott)" -attr Name whenCreated