gcue Posted February 13, 2013 Posted February 13, 2013 hello world! I am trying to figure out how to convert this into a date format 0x2B010C0000000000 I found this but am a bit of a loss with their explanation. http://www.symantec.com/connect/blogs/know-current-definition-date-registry thanks in advance!
Developers Jos Posted February 13, 2013 Developers Posted February 13, 2013 Something like: $DefDate = "0x2B010C0000000000" $year = 1970 + Dec(StringMid($DefDate,3,2)) $Month = Dec(StringMid($DefDate,5,2))+1 $Day = Dec(StringMid($DefDate,7,2)) $Date = $Month & "/" & $Day & "/" & $year ConsoleWrite('@@ Debug(' & @ScriptLineNumber & ') : $Date = ' & $Date & @crlf & '>Error code: ' & @error & @crlf) ;### Debug Console SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now