NT 时间戳与 UTC 时间戳转换的 Bat 脚本
@echo off set /p nttimestamp=Please enter the NT timestamp (in hexadecimal format): set /a utctimestamp=(nttimestamp / 10000000) - 11644473600 echo The UTC timestamp is %utctimestamp%
@echo off set /p utctimestamp=Please enter the UTC timestamp: set /a nttimestamp=(utctimestamp + 11644473600) * 10000000 echo The NT timestamp is %nttimestamp% (in hexadecimal format)
原文地址: https://www.cveoy.top/t/topic/ocL7 著作权归作者所有。请勿转载和采集!