일부 친구에게는 업데이트 오류가 발생하고 프롬프트 코드 0x80004002가 발생할 수 있습니다. 편집자는 이 문제가 시스템 업데이트 과정 중 일부 손상으로 인해 발생했을 수 있다고 생각합니다. 해당 코드를 사용하여 관련 수리를 수행할 수 있습니다.
1. 먼저 "Win+X" 키를 동시에 누르고 "Windows PowerShell(관리자)"를 클릭하세요.
2. 그런 다음 방금 연 PowerShell에 아래 프로그램 코드를 복사하고 Enter 키를 누릅니다.
3. 이때 빨간색 텍스트 오류를 무시하고 컴퓨터를 다시 시작해야 합니다.
4. 그런 다음 Windows 업데이트를 다시 실행하세요.
$arch = Get-WMIObject -Class Win32_Processor -ComputerName LocalHost | Select-Object AddressWidth
Write-Host "1. Windows 업데이트 서비스를 중지하는 중..."
Stop-Service -Name BITS
Stop- 서비스 -이름 wuauserv
Stop-Service -이름 appidsvc
Stop-Service -이름 cryptsvc
Write-Host "2. QMGR 데이터 파일 제거..."
Remove-Item "$env:allusersprofileApplication DataMicrosoftNetworkDownloaderqmgr*.dat " -ErrorAction SilentlyContinue
Write-Host "3. 소프트웨어 배포 및 CatRoot 폴더 이름 바꾸기..."
Rename-Item $env:systemrootSoftwareDistribution SoftwareDistribution.bak -ErrorAction SilentlyContinue
Rename-Item $env:systemrootSystem32Catroot2 catroot2.bak -ErrorAction SilentlyContinue
Write-Host "4. 이전 Windows 업데이트 로그 제거 중..."
Remove-Item $env:systemrootWindowsUpdate.log -ErrorAction SilentlyContinue
Write-Host "5. Windows 업데이트 서비스를 기본 설정으로 재설정 ..."
"sc.exe sdset 비트 D:(A;;CCLCSWRPWPDTLOCRRC;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;BA)(A;;CCLCSWLOCRRC;;AU)(A;;CCLCSWRPWPDTLOCRRC; ;;PU)"
"sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC ;;PU)"
Set-Location $env:systemrootsystem32
Write-Host "6. 일부 DLL을 등록하는 중..."
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml.dll
regsvr32.exe /s shdocvw.dll
regsvr32.exe /s browserui.dll
regsvr32.exe /s jscript.dll
regsvr32.exe /s vbscript.dll
regsvr32.exe /s scrrun.dll
regsvr32.exe /s msxml.dll
regsvr32.exe /s msxml3.dll
regsvr32.exe /s msxml6.dll
regsvr32 .exe /s actxprxy.dll
regsvr32.exe /s Softpub.dll
regsvr32.exe /s wintrust.dll
regsvr32.exe /s dssenh.dll
regsvr32.exe /s rsaenh.dll
regsvr32.
regsvr32.exe /s sccbase.dll
regsvr32.exe /s slbcsp.dll
regsvr32.exe /s cryptdlg.dll
regsvr32.exe /s oleaut32.dll
regsv r32.exe /sole32.dll
regsvr32.exe /s shell32.dll
regsvr32.exe /s initpki.dll
regsvr32.exe /s wuapi.dll
regsvr32.exe /s wuaueng.dll
regsvr32.ex e/swuaueng1.dll
regsvr32.exe /s wucltui.dll
regsvr32.exe /s wups.dll
regsvr32.exe /s wups2.dll
regsvr32.exe /s wuweb.dll
regsvr32.exe / sqmgr.dll
regsvr32.exe /s qmgrprxy.dll
regsvr32.exe /s wucltux.dll
regsvr32.exe /s muweb.dll
regsvr32.exe /s wuwebv.dll
Write-Host "7) WSUS 클라이언트 제거 설정..."
REG DELETE "HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate" /v PingID /f
REG DELETE "HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate" /v I d /f
Write-Host "8) WinSock 재설정 중..."
netsh Winsock 재설정
netsh winhttp 재설정 프록시
Write-Host "9) 모든 BITS 작업 삭제..."
Get-BitsTransfer | Remove-BitsTransfer
Write-Host "10 ) Windows 업데이트 에이전트를 설치하려고 합니다..."
if($arch -eq 64){
wusa Windows8-RT-KB2937636-x64 /quiet
}
else{
wusa Windows8-RT-KB2937636 -x86 /quiet
}
Write-Host "11) Windows 업데이트 서비스 시작 중..."
Start-Service -Name BITS
Start-Service -Name wuauserv
Start-Service -name appidsvc
Start -Service -Name cryptsvc
Write-Host "12) 검색 강제 중..."
wuauclt /resetauthorization /Detectnow
Write-Host "프로세스가 완료되었습니다. 컴퓨터를 재부팅하세요.
"위 내용은 win10 버전 1903 업데이트 오류 0x80004002를 해결하는 효과적인 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!