批处理访问局域网中某一台计算机的时间

2024年12月02日 15:02
有4个网友回答
网友(1):

你好,如果只是访问时间,代码如下:

@echo off
::net time \\电脑名(或IP),如下面的获得本机时间,本行可删除。
net time \\127.0.0.1
pause

设置本机时间为网络中电脑的时间:

@echo off
net time \\127.0.0.1 /set /y

网友(2):

批处理访问局域网中某一台计算机的时间
如果只是访问时间,代码如下: @echo off::net time \\电脑名(或IP),如下面的获得本机时间,本行可删除。net time \\127.0.0.1pause设置本机时间为网络中电脑的时间: @echo offnet time \\127.0.0.1 /set /y

网友(3):

http://bbs.kafan.cn/thread-357384-1-1.html

网友(4):

net time \\IP /y /set