我需要一个批处理代码来在 txt 文件中写入系统开启时间。意味着我需要将打开 Windows 的时间写入 txt 文件。
问问题
104 次
2 回答
3
尝试这个:
@echo off
>"C:\path\to\startup.txt" (for /f "tokens=3,4" %%a in (
'net statistics workstation ^| find "since"'
) do (
echo %%a %%b
))
于 2013-07-21T15:38:02.910 回答
0
我会设置一个计划任务,它将在启动时运行一小批(如果需要,只需将日期和时间回显到文本文件以及一些描述文本)
schtasks /create /?
第一次获得正确的语法有点困难,但值得付出努力。
于 2013-07-25T20:44:28.813 回答