Description
Reports the Universal Time Coordinate (UTC) time on a computer.
Script Code
var wbemFlagReturnImmediately = 0x10;
var wbemFlagForwardOnly = 0x20;
var objWMIService = GetObject("winmgmts:\\.\root\CIMV2");
var colItems = objWMIService.ExecQuery("SELECT * FROM Win32_UTCTime", "WQL",
wbemFlagReturnImmediately | wbemFlagForwardOnly);
var enumItems = new Enumerator(colItems);
for (; !enumItems.atEnd(); enumItems.moveNext()) {
var objItem = enumItems.item();
WScript.Echo("Day: " objItem.Day);
WScript.Echo("Day Of Week: " objItem.DayOfWeek);
WScript.Echo("Hour: " objItem.Hour);
WScript.Echo("Milliseconds: " objItem.Milliseconds);
WScript.Echo("Minute: " objItem.Minute);
WScript.Echo("Month: " objItem.Month);
WScript.Echo("Quarter: " objItem.Quarter);
WScript.Echo("Second: " objItem.Second);
WScript.Echo("Week In Month: " objItem.WeekInMonth);
WScript.Echo("Year: " objItem.Year);
WScript.Echo();
}
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn