获取远程电脑的日期时间?
.net 中是否有任何类可用于获取远程 PC 的日期时间?为此,我可以使用计算机名称或时区。对于每种情况,是否有不同的方法来获取当前日期时间?我使用的是 Visual Studio 2005。
Is there any class available to get a remote PC's date time in .net? In order to do it, I can use a computer name or time zone. For each case, are there different ways to get the current date time? I am using Visual Studio 2005.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我为您提供了一个使用 WMI 的解决方案。您可能需要也可能不需要域和安全信息:
I give you a solution which uses WMI. You may or may not need the domain and security information:
由于 WMI 代码会非常慢,您可以使用下面的代码来获得更快的结果
Since WMI code would be very slow, you can use the below code to get faster results
在 Windows 计算机上,可以使用
net time \\
来获取远程计算机的时间。您可以使用它来查找远程系统时间,如果您想要代码,您可以将其包装在函数中以在 C# 中执行 shell (DOS) 函数。On a Windows machine there is
net time \\<remote-ip address>
to get the time of a remote machine. You could use that to find the remote system time, if you want code you can wrap it up in the function to execute the shell (DOS) functions in C#.您可以使用远程 WMI 和
Win32_TimeZone< /代码>类
。您确实需要拥有在该计算机上执行 WMI 查询的权限。通过使用 UTC 而不是当地时间来避免这样的麻烦。
You can use remote WMI and the
Win32_TimeZone
class. You do need to have permission to execute WMI queries on that machine. Avoid hassle like this by working with UTC instead of local time.您可以使用 pinvoke NetRemoteTOD原生API。这是一个小型 PoC。
You can use pinvoke to NetRemoteTOD native API. Here is a small PoC.