Results 1 to 5 of 5

Thread: Convert Hex Value to Date from Binary Reg Key

  1. #1
    RobT Guest

    Convert Hex Value to Date from Binary Reg Key

    Hi,

    I am trying to get a date value from the registry that is stored in hex in a
    binary reg key. The key looks like this.

    [HKEY_LOCAL_MACHINE\SOFTWARE\intel\landesk\virusprotect6\currentversion]
    "PatternFileDate"=hex:23,02,19,00,00,00,00,00

    When I use WMI to query to the binary registry value it returns an array of
    bytes that looks like this:

    - arrValues {...} Array of Variant
    (0) 35 Byte
    (1) 2 Byte
    (2) 25 Byte
    (3) 0 Byte
    (4) 0 Byte
    (5) 0 Byte
    (6) 0 Byte
    (7) 0 Byte

    What do I do with they array now? How can I get the date from this array?

    Thanks,
    Rob


  2. #2
    Al Dunbar [MS-MVP] Guest

    Re: Convert Hex Value to Date from Binary Reg Key


    "RobT" <r_tesoriero@hotmail.com.(donotspam)> wrote in message
    news:36319489-D2C0-484E-880C-5B665A1B24B4@microsoft.com...
    > Hi,
    >
    > I am trying to get a date value from the registry that is stored in hex in

    a
    > binary reg key. The key looks like this.
    >
    > [HKEY_LOCAL_MACHINE\SOFTWARE\intel\landesk\virusprotect6\currentversion]
    > "PatternFileDate"=hex:23,02,19,00,00,00,00,00
    >
    > When I use WMI to query to the binary registry value it returns an array

    of
    > bytes that looks like this:
    >
    > - arrValues {...} Array of Variant
    > (0) 35 Byte
    > (1) 2 Byte
    > (2) 25 Byte
    > (3) 0 Byte
    > (4) 0 Byte
    > (5) 0 Byte
    > (6) 0 Byte
    > (7) 0 Byte
    >
    > What do I do with they array now? How can I get the date from this array?


    Good question. Do you know what date this value actually represents (i.e. is
    it displayed in human readable form by the software)? My quess would be Feb
    25, 2005 (2005 = 1970 + 35), but without knowing anything else about it that
    is only a guess.

    /Al



  3. #3
    RobT Guest

    Re: Convert Hex Value to Date from Binary Reg Key

    Thanks for that, makes more sense now.

    The only thing is that the month is one off. The app (symantec AV) displays
    that date as 3/25/2005, but we read that as 2/25/2005 I've checked a number
    of servers now and the date is always one off.

    I have fixed it in my code by just adding 1 to the month each time, but i'd
    still liek to know why it's a month out.

    Any ideas?

    "Al Dunbar [MS-MVP]" wrote:

    >
    > "RobT" <r_tesoriero@hotmail.com.(donotspam)> wrote in message
    > news:36319489-D2C0-484E-880C-5B665A1B24B4@microsoft.com...
    > > Hi,
    > >
    > > I am trying to get a date value from the registry that is stored in hex in

    > a
    > > binary reg key. The key looks like this.
    > >
    > > [HKEY_LOCAL_MACHINE\SOFTWARE\intel\landesk\virusprotect6\currentversion]
    > > "PatternFileDate"=hex:23,02,19,00,00,00,00,00
    > >
    > > When I use WMI to query to the binary registry value it returns an array

    > of
    > > bytes that looks like this:
    > >
    > > - arrValues {...} Array of Variant
    > > (0) 35 Byte
    > > (1) 2 Byte
    > > (2) 25 Byte
    > > (3) 0 Byte
    > > (4) 0 Byte
    > > (5) 0 Byte
    > > (6) 0 Byte
    > > (7) 0 Byte
    > >
    > > What do I do with they array now? How can I get the date from this array?

    >
    > Good question. Do you know what date this value actually represents (i.e. is
    > it displayed in human readable form by the software)? My quess would be Feb
    > 25, 2005 (2005 = 1970 + 35), but without knowing anything else about it that
    > is only a guess.
    >
    > /Al
    >
    >
    >


  4. #4
    Gerry Hickman Guest

    Re: Convert Hex Value to Date from Binary Reg Key

    Hi RobT,

    > that date as 3/25/2005, but we read that as 2/25/2005


    > I have fixed it in my code by just adding 1 to the month each time, but i'd
    > still liek to know why it's a month out.


    As far as I know, this is "normal" for dates. JScript handles them in a
    similar way. The JScript docs have some nice examples of date handling.

    --
    Gerry Hickman (London UK)

  5. #5
    Al Dunbar [MS-MVP] Guest

    Re: Convert Hex Value to Date from Binary Reg Key


    "RobT" <r_tesoriero@hotmail.com.(donotspam)> wrote in message
    news:001D0039-8951-45F2-B9CB-2E20445FEDFD@microsoft.com...
    > Thanks for that, makes more sense now.
    >
    > The only thing is that the month is one off. The app (symantec AV)

    displays
    > that date as 3/25/2005, but we read that as 2/25/2005 I've checked a

    number
    > of servers now and the date is always one off.
    >
    > I have fixed it in my code by just adding 1 to the month each time, but

    i'd
    > still liek to know why it's a month out.
    >
    > Any ideas?


    Yeah, odd that it is out by a month, but not by a day or a year. Looks like
    the month is given as a number from 0 to 11. Why Symantec decided that, I'll
    never know. If it is some sort of standard, I still don't know, but will
    just have to bow to the inevitable.

    /Al

    > "Al Dunbar [MS-MVP]" wrote:
    >
    > >
    > > "RobT" <r_tesoriero@hotmail.com.(donotspam)> wrote in message
    > > news:36319489-D2C0-484E-880C-5B665A1B24B4@microsoft.com...
    > > > Hi,
    > > >
    > > > I am trying to get a date value from the registry that is stored in

    hex in
    > > a
    > > > binary reg key. The key looks like this.
    > > >
    > > >

    [HKEY_LOCAL_MACHINE\SOFTWARE\intel\landesk\virusprotect6\currentversion]
    > > > "PatternFileDate"=hex:23,02,19,00,00,00,00,00
    > > >
    > > > When I use WMI to query to the binary registry value it returns an

    array
    > > of
    > > > bytes that looks like this:
    > > >
    > > > - arrValues {...} Array of Variant
    > > > (0) 35 Byte
    > > > (1) 2 Byte
    > > > (2) 25 Byte
    > > > (3) 0 Byte
    > > > (4) 0 Byte
    > > > (5) 0 Byte
    > > > (6) 0 Byte
    > > > (7) 0 Byte
    > > >
    > > > What do I do with they array now? How can I get the date from this

    array?
    > >
    > > Good question. Do you know what date this value actually represents

    (i.e. is
    > > it displayed in human readable form by the software)? My quess would be

    Feb
    > > 25, 2005 (2005 = 1970 + 35), but without knowing anything else about it

    that
    > > is only a guess.
    > >
    > > /Al
    > >
    > >
    > >




Similar Threads

  1. Problem to convert binary to string
    By steg in forum Software Development
    Replies: 1
    Last Post: 08-04-2011, 01:21 AM
  2. Convert string to binary in java
    By TechGate in forum Software Development
    Replies: 5
    Last Post: 28-01-2010, 01:36 PM
  3. c program to convert decimal to binary
    By Oswaldo in forum Software Development
    Replies: 3
    Last Post: 25-11-2009, 03:45 PM
  4. Convert binary to decimal in java
    By Seraphim in forum Software Development
    Replies: 2
    Last Post: 20-05-2009, 09:19 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,516,536.87616 seconds with 17 queries