检查 %FILENAME% 中列出的所有服务器上的时间的脚本

检查 %FILENAME% 中列出的所有服务器上的时间的脚本

我想检查 Excel 文件(即 (serverlist.txt))中列出的一组 Windows 2003 和 2008 服务器的时间,并输出到另一个文件。

这可能吗。

答案1

假设服务器名称在 input.txt 中,您可以运行此命令。

for /f "tokens=1" %%a in (input.txt) do net time \\%%a|find /i "%%a">>result.txt

相关内容