如何在执行时将批处理文件中的时间和日期数据记录到.log文件中

时间:2016-11-25 20:10:03

标签: batch-file

我想在启动批处理文件时将当前日期和时间记录到单独的日志文件中。到目前为止我所拥有的:

date | mylogfile.log
time | mylogfile.log

echo i will now create a temp file in the c drive

md c:\myTemp

cd c:\myTemp

cd c:\"program Files (x86)\"Microsoft Visual Studio 14.0"\"Common7"\IDE

devenv.exe

pause

所以它会记录它但它打开我的日志文件并让用户在执行批处理文件之前按Enter键。我想要的只是登录文件的日期和时间,没有别的。我的问题在我的前两行内。

1 个答案:

答案 0 :(得分:2)

要记录日期和时间数据,请使用日期/ T>>和时间/ T>>

date /T >> mylogfile.log
time /T >> mylogfile.log

echo i will now create a temp file in the c drive

md c:\myTemp

cd c:\myTemp

cd "c:\program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE"

devenv.exe

pause