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

发布于 2024-09-28 10:41:52 字数 225 浏览 4 评论 0原文

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

from datetime import datetime
datetime.now()

Is there a way to query the system time of another machine on the windows network? 例如 \\mynetworkpc

I understand that I can query system time of my machine like this:

from datetime import datetime
datetime.now()

Is there a way to query the system time of another machine on the windows network?
Eg of \\mynetworkpc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光病人 2024-10-05 10:41:52

在Windows机器上,有net time \\来获取远程机器的时间,但我不知道它是否是便携式的。

>>> 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
>>>

on a Windows machine there is net time \\<remote-ip address> to get the time of a remote machine but I don't know if it is portable.

>>> 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
>>>
你的呼吸 2024-10-05 10:41:52

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

You could combine a Python WMI module with the answers to this question: get-remote-pcs-date-time

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文