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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.