MS Regedit Hex to Date Conversion
You have 3 possible methods:
Manually
The third method is described [here] for Windows 7 but it is also working with Windows 10. Applying the method described on that page, gives the following steps:
- Convert your date from little endian to big endian. For example your date create is:
e407 0500 0400 0e00 1400 1600 0600 8b01
(I have put the spaces to better visualize). To convert to big endian, swap every 2 bytes, you will get07e4 0005 0004 000e 0014 0016 0006 018b
- You get the year from converting
07e4
to decimal: 2020. - The month
00005
to decimal: 5 = May - Then the day of the week
0004
to decimal : 4 = Thursday - The day
000e
to decimal: 14 = 14th day of the month - The hour
0014
to decimal: 20 = 20:00 or 08:00 PM - The minutes
0016
to decimal: 22 = 22 minutes - The seconds
0006
to decimal:6 = 6 seconds - The thousandth seconds
018b
to decimal 395 = 0.395 second.
Your created date is/was 2020 May 14, 20:22:06.395.
Using Powershell
You can try to use PowerShell as described here.
Using DCode
Another possibility is to use Dcode. Insert the hex date you want to convert, select Hexadecimal (Little Endian) as the format then click on Decode button.