Wednesday, July 12, 2017

 

[WSUS] Windows Update error code 80244019에 대한 조치법


The Windows Update error code 80244019 오류는 Windows Update server(WSUS로 관리할 때는 WSUS 서버)와의 연결이 되지 않을 때 발생한다.


일반적인 방법을 설명해 놓은 경우도 있지만, Domain 환경에서는 SUS Client ID가 중복으로 WSUS 서버에 인지가 되어 발생하는 경우가 있기 때문에 별도로 조치가 필요하다.

이럴 때는 아래 스크립트를 bat파일을 저장해서 문제가 발생한 PC에서 관리자 권한으로 실행시키면 된다. (문제가 발생한 PC 대상으로 AD 정책으로 적용해도 된다)
net stop wuauserv
REG DELETE “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate” /v AccountDomainSid /f
REG DELETE “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate” /v PingID /f
REG DELETE “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate” /v SusClientId /f
net start wuauserv
wuauclt /resetauthorization /detectnow
Pause
스크립트 내용은 아래와 같다.

  1. Stops the wuauserv service
  2. Deletes the AccountDomainSid registry key (if it exists)
  3. Deletes the PingID registry key (if it exists)
  4. Deletes the SusClientId registry key (if it exists)
  5. Restarts the wuauserv service
  6. Resets the Authorization Cookie


Share:

0 comments:

Post a Comment