我尝试了如下命令。但是看不到服务器时间。
psexec \\SERVER_NAME -i -u USERNAME -p PWD "C:\WINDOWS\system32\cmd.exe /c time /t"
或者有其他选择吗?谢谢。
我尝试了如下命令。但是看不到服务器时间。
psexec \\SERVER_NAME -i -u USERNAME -p PWD "C:\WINDOWS\system32\cmd.exe /c time /t"
或者有其他选择吗?谢谢。
net time \\SERVER_NAME
附言。这个问题确实属于ServerFault。
我的公司有大约 100 台服务器。一旦我不得不检查所有服务器上的系统时间。解决方案是:
psexec -d -i cmd /c nettime.bat
nettime.bat 文件内容:
@echo off
net time \\server01 >>c:\1.txt
net time \\server02 >>c:\1.txt
net time \\server03 >>c:\1.txt