获取网络上机器的当前系统时间

时间:2010-10-18 15:47:57

标签: python time networking system

据我所知,我可以像这样查询我机器的系统时间:

from datetime import datetime
datetime.now()

有没有办法查询Windows网络上另一台机器的系统时间? 例如\\mynetworkpc

2 个答案:

答案 0 :(得分:5)

在Windows机器上有net time \\<remote-ip address>来获取远程机器的时间,但我不知道它是否可移植。

>>> import subprocess
>>> subprocess.call(r"net time \\172.21.5.135")
Current time at \\172.21.5.135 is 10/18/2010 12:32 PM

The command completed successfully.

0
>>>

答案 1 :(得分:0)

您可以将Python WMI模块与此问题的答案结合起来:get-remote-pcs-date-time