文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

VBS怎么实现显示当前标准时间

2023-06-08 09:06

关注

本篇内容介绍了“VBS怎么实现显示当前标准时间”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

Option Explicit Dim blnDate, blnTimeDim dtmDateDim intDay, intFormat, intHour, intMin, intMonth, intSec, intUTC, intValid, intYearDim strISO With WScript.Arguments  ' Check command line arguments  If .Unnamed.Count = 0 Then dtmDate = Now  If .Unnamed.Count > 0 Then dtmDate = .Unnamed(0)  If .Unnamed.Count > 1 Then dtmDate = dtmDate & " " & .Unnamed(1)  If .Unnamed.Count > 2 Then dtmDate = dtmDate & " " & .Unnamed(2)  If .Unnamed.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  intValid = 0  blnDate = True  blnTime = True  If .Named.Exists( "D" ) Then    blnDate = True    blnTime = False    intValid = intValid + 1  End If  If .Named.Exists( "T" ) Then    blnDate = False    blnTime = True    intValid = intValid + 1  End If  If intValid <> .Named.Count Then Syntax  If intValid > 1 Then SyntaxEnd With ' Format the output stringintYear = DatePartLZ( "yyyy", dtmDate )intMonth = DatePartLZ( "m", dtmDate )intDay  = DatePartLZ( "d", dtmDate )intHour = DatePartLZ( "h", dtmDate )intMin  = DatePartLZ( "n", dtmDate )intSec  = DatePartLZ( "s", dtmDate )If blnDate Then strISO = intYear & "-" & intMonth & "-" & intDayIf blnTime Then strISO = strISO & " " & intHour & ":" & intMin & ":" & intSec' Display the resultWScript.Echo Trim( strISO )  Function DatePartLZ( myInterval, myDate )  ' Add a leading zero to the DatePart() if necessary  Dim strDatePart  strDatePart = DatePart( myInterval, myDate )  If Len( strDatePart ) < 2 Then strDatePart = "0" & strDatePart  DatePartLZ = strDatePartEnd Function  Sub Syntax  WScript.Echo vbcrlf _        & "Date2ISO.vbs, Version 1.02" _        & vbCrLf _        & "Convert any date/time to ISO date/time" _        & vbCrLf & vbCrLf _        & "Usage: CSCRIPT.EXE //NoLogo Date2ISO.vbs date [ time ] [ /D | /T ]" _        & vbCrLf & vbCrLf _        & "Where: ""date""  is the date to convert (default: current date/time)" _        & vbCrLf _        & "    ""time""  is the optional time to convert" _        & vbCrLf _        & "    /D    return date only (default: both date and time)" _        & vbCrLf _        & "    /T    return time only (/D and /T are mutually exclusive)" _        & vbCrLf & vbCrLf _        & "Note:  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 1End Sub

附上一段VBS校对系统时间的代码给大家参考下

'VBS校准系统时间 BY BatMan Dim objXML, Url, Message Message = "恭喜你,本机时间非常准确无需校对!" Set objXML = CreateObject("MSXML2.XmlHttp") Url = "http://open.baidu.com/special/time/" objXML.open "GET", Url, False objXML.send() Do Until objXML.readyState = 4 : WScript.Sleep 200 : Loop Dim objStr, LocalDate objStr = objXML.responseText LocalDate = Now() Set objXML = Nothing Dim objREG, regNum Set objREG = New RegExp objREG.Global = True objREG.IgnoreCase = True objREG.Pattern = "window.baidu_time\((\d{13,})\)" regNum = Int(objREG.Execute(objStr)(0).Submatches(0)) /1000 Dim OldDate, BJDate, Num, Num1 OldDate = "1970-01-01 08:00:00" BJDate = DateAdd("s", regNum, OldDate) Num = DateDiff("s", LocalDate, BJDate) If Abs(Num) >=1 Then Dim DM, DT, TM, objSHELL DM = DateAdd("S", Num, Now()) DT = DateValue(DM) TM = TimeValue(DM) If InStr(Now, "午") Then Dim Arr, Arr1, h34 Arr = Split(TM, " ") Arr1 = Split(Arr(1), ":") h34 = Arr1(0) If Arr(0) = "下午" Then h34 = h34 + 12 Else If h34 = 12 Then h34 = 0 End If TM = h34 & ":" & Arr1(1) & ":" & Arr1(2) End If Set objSHELL = CreateObject("Wscript.Shell") objSHELL.Run "cmd /cdate " & DT, False, True objSHELL.Run "cmd /ctime " & TM, False, True Num1 = Abs(DateDiff("s", Now(), BJDate)) Message = "【校准前】" & vbCrLf _ & "标准北京时间为:" & vbTab & BJDate & vbCrLf _ & "本机系统时间为:" & vbTab & LocalDate & vbCrLf _ & "与标准时间相差:" & vbTab & Abs(Num) & "秒" & vbCrLf & vbCrLf _ & "【校准后】" & vbCrLf _ & "本机系统时间为:" & vbTab & Now() & vbCrLf _ & "与标准时间相差:" & vbTab & Num1 & "秒" Set objSHELL = Nothing End If WScript.Echo Message

“VBS怎么实现显示当前标准时间”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯