0

我正在尝试将系统信息放入 csv 文件中。我写了以下批处理文件:

@echo off
systeminfo /fo csv > D:\mySystemInfo.csv

批处理文件:

  1. 创建一个名为“mySystemInfo.csv”的输出文件

但是文件完全是空白的,命令提示符也是空白的。只有光标一直闪烁。

我正在使用 Windows 7

4

2 回答 2

0

您应该在命令重定向运算符之后直接编写路径,例如>

@echo off
systeminfo /fo csv>D:\mySystemInfo.csv
于 2016-11-17T16:56:25.773 回答
-1

You dont need to have the /fo csv just use

systeminfo >>D:\MySystemInfo.csv

Itll take the output of the command "systeminfo" and place into the file MySystemInfo.csv on the D drive [assuming that you have a D:\ drive to store it in.]

于 2013-02-16T16:56:31.417 回答