zoukankan      html  css  js  c++  java
  • Computer no report to WSUS(计算机长期没有向WSUS报告状态)

    环境:
    Windwos Server 2003 SP1 / Windows XP SP2,WSUS 2.0 SP1 / WSUS 3.0 SP1
     
    现象:
    WSUS服务器显示能发现服务器 / 客户机,但是长时间没有报告状态。即使运行wuauclt.exe  /detectnow也无法解决问题。在WindowsUpdate.log里显示error = 0x8024400D
     
    解决办法:
    把一下命令做成.bat问题,运行一下,等待至少15-30分钟后,在WSUS管理控制台内查看该计算机状态。
     
    reg delete HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\ /va /f
    net stop "Automatic Updates"
    net stop bits
    md %windir%\softwaredistribution-old
    xcopy %windir%\softwaredistribution %windir%\softwaredistribution-old /s /e /y
    del %windir%\softwaredistribution\*.* /s /q
    rmdir %windir%\softwaredistribution\ /s /q
    net start bits
    net start "Automatic Updates"
    proxycfg -d
    wuauclt.exe /resetauthorization /detectnow
  • 相关阅读:
    CF1324F Maximum White Subtree——换根dp
    bzoj3029 守卫者的挑战
    k8s-pod
    k8s 介绍
    docker-dockerfile
    docker学习
    git
    windows 上git安装及gitlab 连接
    gitlab 配置管理
    gitlab安装/配置/维护
  • 原文地址:https://www.cnblogs.com/chinajsks/p/2782492.html
Copyright © 2011-2022 走看看