我想在启动批处理文件时将当前日期和时间记录到单独的日志文件中。到目前为止我所拥有的:
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键。我想要的只是登录文件的日期和时间,没有别的。我的问题在我的前两行内。
答案 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