문제

what is the meaning of eventlog time generated value in wmi "20061101185842.000000-000".

when i am using windows event viewer it gives the date and time format as " 2/13/2013 4:05:15 PM " but when i am accessing it in win32_NTLogEvent, it gives the format as "20061101185842.000000-000".

please clear my doubt...

Thanks in advance...

도움이 되었습니까?

해결책

The WMI uses the Universal Time Coordinate (UTC) format, try these articles for more information.

다른 팁

You can convert it to DateTime like this:

ManagementDateTimeConverter.ToDateTime(yourValue);

where yourValue is a string like this: "20061101185842.000000-000"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top