查看: 414  |  回复: 0
  VB6 联网计算机时间同步
楼主
发表于 2023年4月14日 16:05
Option Explicit

Private Sub Command1_Click()
    Call SyncTime
End Sub

'net time "\\OhterComputerName" /set /yes
'* 注意是本机和目标机器时间一致,服务器小心,同步电脑必须有访问权限 *
Public Sub SyncTime()
    Dim strTimeSource As String
    Dim strShellCmdLine As String

    strTimeSource = "\\frt_Rec"    '同步时间源

    'Chr$(34)="
    strShellCmdLine = "net time " & Chr$(34) & strTimeSource & Chr$(34) & " /set /yes"

    Call Shell(strShellCmdLine)
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com