获取网络上机器的当前系统时间
据我所知,我可以像这样查询我的机器的系统时间:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在Windows机器上,有
net time \\
来获取远程机器的时间,但我不知道它是否是便携式的。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.您可以将 Python WMI 模块与此问题的答案结合起来: get-remote-pcs-date-时间
You could combine a Python WMI module with the answers to this question: get-remote-pcs-date-time