通过 telnet 或 smbclient 从 Linux 上的远程 Windows 计算机获取当前日期和时间
有没有办法从 Linux 上的远程 Windows 机器获取当前日期和时间? 在未启用 ssh 的远程 Windows 计算机上,没有 powershell。 我们可以通过 telnet 或 smbclient 达到结果吗?
Is there a way to get current date and time from remote windows machine on linux?
On remote windows machine ssh not enabled, there are no powershell.
Can we achieve result via telnet or smbclient?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 net time 命令(net 是 SAMBA 的一部分):
net time -S 计算机名
(与 Windows 中使用 net time \computername 的方式相同)
You can use the net time command (net is part of SAMBA):
net time -S computername
(the same way you would use net time \computername from Windows)
您必须在远程计算机上安装时间服务(AFAIR,Windows有内置时间服务)。
You must install time service on the remote computer (AFAIR, Windows has built-in time service).