1826332 Members
3491 Online
109692 Solutions
New Discussion

Re: ASR - Timestamp

 
hansis1
Advisor

ASR - Timestamp

Hello!

 

I have a message from HP-System on my Server:

 

The system has rebooted from a Automatic Server Recovery (ASR) event.

 

User Action

Determine the nature of the Automatic Server Recovery (ASR) event, and take corrective action.

 

WBEM Indication Properties

AlertingElementFormat: 1 0x1 (Other)

AlertType: 5 0x5 (Device Alert)

Description: "The system has rebooted from a Automatic Server Recovery (ASR) event."

EventCategory: 16 0x10 (System Power)

EventID: "1"

TIME_CREATED: 130048454445751487 0x1ce06615ad3dcbf

 

How can I convert the TIME_CREATED 130048454445751487  to a human readable date?

 

thx.

hanse 

1 REPLY 1
Dennis Handly
Acclaimed Contributor

Re: ASR - Timestamp

>How can I convert the TIME_CREATED 130048454445751487  to a human readable date?

 

That output format matches: HP Insight Management WBEM Providers for Windows Server

 

This talks about: Number of 100-ns intervals since 1st Jan 1601

http://timgolden.me.uk/python/wmi/tutorial.html

 

This mentions some Windows functions to decode it:

http://msdn.microsoft.com/en-us/library/windows/desktop/aa393040%28v=vs.85%29.aspx

http://msdn.microsoft.com/en-us/library/windows/desktop/aa394590%28v=vs.85%29.aspx

 

Using the info in the link about 1601, when I convert to a UNIX Epoch I get:

That time in UTC is: Sat Feb  9 01:04:04 2013

WBEM