List the UTC time on a computer

Source: Internet
Author: User

Description
Reports the Universal Time Coordinate (UTC) time on a computer.

Script code CopyCodeCode: var wbemflagreturnimmediately = 0x10;
VaR wbemflagforwardonly = 0x20;

VaR ob1_miservice = GetObject ("winmgmts: \\\\\. \ Root \ cimv2 ");
VaR colitems = obw.miservice. 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 ();
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.