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
  • 相关阅读:
    CTF简介
    最先与最后
    记一次某校版facemash的搭建
    ipv6入门
    win10开启IPv6的两种方法
    安装 Go 1.11 在 Ubuntu 18.04 & 16.04 LTS
    python开发者的AsyncIO
    Python 异步--Await the Future
    Python元类
    alias 和 unalias 命令
  • 原文地址:https://www.cnblogs.com/chinajsks/p/2782492.html
Copyright © 2011-2022 走看看