如何批量获取系统启动时间?

时间:2019-02-28 10:04:58

标签: batch-file

我需要批处理脚本中的系统启动时间,只有时间,没有日期,没有字符串。
我无法将其放入变量

set systime=systeminfo | find "System Boot Time"
echo %systime%

唯一有效的是:

systeminfo | find "System Boot Time">>c:\time.txt

我需要将其作为批处理,因为我需要修改一个已经存在的批处理文件。

编辑: 将“系统启动时间”更改为“系统启动时间”,不知道这些来自哪里^^

2 个答案:

答案 0 :(得分:1)

我将使用WMI来获取所需的信息,而不是运行SystemInfo并解析出所需的信息。

   $(function() {
      $('#startdatetime').datetimepicker(
      {format:'DD/MM/YYYY HH:mm:ss'});
   });

答案 1 :(得分:0)

将以下几行复制并粘贴到nodepad中,并另存为.cmd扩展名。

@ECHO OFF
systeminfo | find "System Boot Time"
PAUSE