Jump to content

converting registry value from hex


gcue
 Share

Recommended Posts

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!

Link to comment
Share on other sites

  • Developers

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.
  :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...