Sure, or simply:
perl -le 'print time'
but unfortunately, perl is not often available.
Earlier today, my coworker sent over the following. It does the job.
WScript.Echo "current time= " & Now
str_epoch= "01/01/1970 12:00 AM"
strInstalldate = DateDiff("s",str_epoch,Now)
WScript.Echo "seconds since epoch= " & strInstalldate
str_plus= DateAdd("s",strInstalldate,str_epoch)
WScript.Echo "seconds added to epoch = " & str_plus
Perhaps someone besides me will find it useful.