Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
hDate = "01c9c5ce4b48e5fd"[green]
'The above should resolve to 4/25/2009[/green]
WScript.Echo HexDateToDate(hDate)
Function HexDateToDate(hDate)
highPart = CDbl("&h" & Left(hDate,8))
lowPart = CDbl("&h" & Right(hDate,8))
intInstalledOn = highPart * (2^32) + lowPart
intInstalledOn = intInstalledOn / (60 * 10000000)
intInstalledOn = intInstalledOn / 1440
HexDateToDate = intInstalledOn + #1/1/1601#
End Function