VB.net 2005获取远程计算机的系统时间?
我正在尝试设置一个“AT”作业来导出远程计算机上的一些注册表项,问题是 DOS 命令需要时间来运行。 我想获取远程计算机的系统时间,以便我可以安排它从我发送命令后运行 1 分钟。
有没有办法用VB.Net代码获取远程计算机的系统时间?
I am trying to set up an "AT" job to export some registry keys on a remote computer, the problem is that DOS command requires a time to run. I want to get the system time of the remote computer so i can schedule it to run 1 minute from the time i send the command.
Is there any way to get the system time of a remote computer with VB.Net code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是我要做的工作,感谢你的帮助 Jon B.
here is what i got to work, thanks for all your help Jon B.
您可以使用:
您只需要对此进行处理并解析结果。
这是一些示例代码。 它是用 C# 编写的,但应该很容易翻译。
我没有费心添加任何错误处理(如果找不到机器等) - 您可以添加任何您需要的内容来满足您的目的。
You can use:
You'll just need to shell out to this and parse the result.
Here's some sample code. It's in C#, but should be pretty easy to translate.
I didn't bother adding any error handling (if the machine is not found, etc) - you can add in whatever you need to suit your purposes.
..如果你使用的话,也许会做一点检查
..and maby do a little check if you use