当 Windows 上没有“tee”时,如何将 ipconfig 输出保存到文本文件?

当 Windows 上没有“tee”时,如何将 ipconfig 输出保存到文本文件?

我想将 ipconfig /all 保存到文本文件。我在 Windows 10 上。当我在 cmd 中尝试此操作时

ipconfig /all | tee file.txt

我有

'tee' is not recognized as an internal or external command,operable program or batch file.

Windows 的替代品是什么tee

答案1

尝试重定向。而不是| tee> output.txt例如使用

ipconfig /all > output.txt

答案2

ipconfig /all >>logfile.txt 2>>&1

>>logfile.txt 2>>&1会将输出流和错误流重定向到名为 logfile.txt 的文件,该文件将在当前目录中创建并存储。如果该目录中存在现有的 logfile.txt,它会将输出附加到其末尾。

答案3

如果您安装管理系统2您可以使用

$ ipconfig -all | tee file.txt

请注意/all必须写成-all

就我而言,我得到:

$ head file.txt

Windows-IP-Konfiguration

   Hostname  . . . . . . . . . . . . : Death-Star
   [..]

相关内容