Sample code for 30+ languages & platforms
VBScript

Get Current Date/Time as Timestamp (YYYY-MM-DDThh:mm:ssTZD)

Demonstrates how to get the current system date/time in YYYY-MM-DDThh:mm:ssTZD format.

Chilkat VBScript Downloads

VBScript
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)

success = 0

set dt = CreateObject("Chilkat.CkDateTime")

success = dt.SetFromCurrentSystemTime()

' Get a UTC time.
bLocal = 0
timestamp = dt.GetAsTimestamp(bLocal)
outFile.WriteLine("Current UTC Time: " & timestamp)

' Get a local time.
bLocal = 1
timestamp = dt.GetAsTimestamp(bLocal)
outFile.WriteLine("Current Local Time: " & timestamp)

' Sample output:
' 
' Current UTC Time: 2022-03-01T00:48:58Z
' Current Local Time: 2022-02-28T18:48:58-06:00

outFile.Close