How To Convert Active Directory TimeStamp Property To DateTime
Maybe your like
Have you ever seen the timestamp format like this and wondered how it’s equivalent to the normal DateTime format?

It’s the date/time value stored in Active Directory as the number of 100-nanosecond intervals that have elapsed since the 0 hours on January 1, 1601, until the date/time that is being stored. It’s always in UTC (Coordinated Universal Time, aka. GMT) and is often used in Properties like LastLogonTimeStamp, LastPwdSet, etc. /via Technet/
The formula that can be used in Excel is something like this:
DateTime (UTC) = Timestamp/(8.64*10^11) - 109205
You can also use w32tm command line to do the quick conversion as well.
w32tm /ntte timestamp-value
The time shown in the second half is for local time in PCT.
Now let’s take look how it converts in PowerShell, which is so easy.
To convert a timestamp to DateTime format in UTC.
[DateTime]::FromFileTimeUtc(TimeStamp-value)
Local time, regardless of where you are?
[DateTime]::FromFileTime(TimeStamp-value)
Well, that’s one hour off, comparing to using the W32TM command, blame on the summer time saving.
You can also do the conversion the other way around, getting the timestamp from a specified date/time value. For example, to get the present moment in TimeStamp,
(Get-Date).ToFileTime()
Hope it helps.
Related
Post navigation
Renewing SSL Certificate on Remote Desktop Gateway ServerHow To Get the Full List of Properties of A PowerShell ObjectOne thought on “How To Convert Active Directory TimeStamp Property to DateTime”
-
Thank you, a great help! 🙂
Reply
Leave a Reply Cancel reply
Your email address will not be published. Required fields are marked *
Comment *
Name *
Email *
Website
Notify me of follow-up comments by email.
Notify me of new posts by email.
Search for:- Group Policy to Bypass the UAC Prompt After PrinterNightmare Patch
- Managing Microsoft Licenses in PowerShell and Microsoft Graph
- Audit Email Deletion in Microsoft 365
- Adding Multiple Server Names to A Windows Server
- Enforcing HTTP to HTTPS on IIS
KC's Blog
Tag » Active Directory Pwdlastset Convert To Date Excel
-
How To Convert Active Directory Timestamp To Date In Excel (4 ...
-
Active Directory: LastLogonTimeStamp Conversion - TechNet Articles
-
Converting AD Field 'lastLogon' To Date & Time - Excel Help Forum
-
Calculating A Date From An Active Directory Value
-
Convert Active Directory Timestamp - Nintex Community
-
Efficiently Converting Pwdlastset To Datetime In A Single Line.
-
[PDF] Converting Ldap (activedirectory) - Dates - HeelpBook
-
Thread: Help With Converting AD Dates To Readable Formats
-
C# - How To Convert Active Directory PwdLastSet To Date/Time
-
Active Directory Date Conversion - ACL Partner Community
-
LDAP, Active Directory & Filetime Timestamp Converter
-
TIP: Active Directory Module Date Properties - Tech Wizard
-
HOW TO: Convert Date/time Or String To LDAP Date Format And Vice ...
-
Export Gives Numerical Format Instead Of Date - Spiceworks Community