主页 > 知识库 > VBS实现将当前时间转换成UTC时间

VBS实现将当前时间转换成UTC时间

热门标签:服务器配置 铁路电话系统 智能手机 呼叫中心市场需求 检查注册表项 美图手机 网站文章发布 银行业务

例如下面的代码在当前时间返回:1368299689

Option Explicit
 
Dim dtmDate
 
If WScript.Arguments.Named.Count > 0 Then Syntax
 
With WScript.Arguments.Unnamed
  ' Check command line arguments
  If .Count = 0 Then dtmDate = Now
  If .Count > 0 Then dtmDate = .Item(0)
  If .Count > 1 Then dtmDate = dtmDate  " "  .Item(1)
  If .Count > 2 Then dtmDate = dtmDate  " "  .Item(2)
  If .Count > 3 Then Syntax
  On Error Resume Next
  dtmDate = CDate( dtmDate )
  If Err Then
    On Error Goto 0
    Syntax
  End If
  On Error Goto 0
  If Not IsDate( dtmDate ) Then Syntax
End With
 
' Calculate and display the result
WScript.Echo DateDiff( "s", "1970-01-01 00:00:00", dtmDate )
 
 
Sub Syntax
  WScript.Echo vbcrlf _
         "Date2UTC.vbs, Version 1.00" _
         vbCrLf _
         "Convert any date/time to Unix time (UTC)" _
         vbCrLf  vbCrLf _
         "Usage: CSCRIPT.EXE //NoLogo Date2UTC.vbs date [ time ]" _
         vbCrLf  vbCrLf _
         "Where: ""date""  is the date to convert (default: current date/time)" _
         vbCrLf _
         "    ""time""  is the optional time to convert" _
         vbCrLf  vbCrLf _
         "Notes: Though often called UTC, Unix time does not take into account leap" _
         vbCrLf _
         "    seconds, while ""official"" UTC does." _
         vbCrLf _
         "    If the specified date is ambiguous, the current user's date" _
         vbCrLf _
         "    and time format is assumed." _
         vbCrLf  vbCrLf _
         "Written by Rob van der Woude" _
         vbCrLf _
         "http://www.robvanderwoude.com"
  WScript.Quit 1
End Sub

以上所述就是本文的全部内容了,希望大家能够喜欢。

您可能感兴趣的文章:
  • 用vbscript实现修改屏幕保护的等待时间长度
  • 将WMI中的DateTime类型转换成VBS时间的函数代码
  • 用VBS修改(设置)系统时间和日期的代码
  • 校准系统时间的VBS代码
  • VBS中获取系统本次及上次开关机时间的代码(WinXP/win2003/Win7兼容版)
  • vbscript实现的根据不同时间段显示不同的欢迎语
  • vbs获取当前时间日期的代码
  • vbscript获取文件的创建时间、最后修改时间和最后访问时间的方法
  • VBS显示当前标准时间

标签:新疆 河南 沈阳 沧州 乐山 长治 红河 上海

巨人网络通讯声明:本文标题《VBS实现将当前时间转换成UTC时间》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266