主頁(yè) > 知識(shí)庫(kù) > win10更新1909提示錯(cuò)誤代碼0x80073701解決步驟

win10更新1909提示錯(cuò)誤代碼0x80073701解決步驟

熱門標(biāo)簽:百度地圖標(biāo)注中心在哪里注冊(cè)入駐 南京400電話辦理扣二零零七九 地圖標(biāo)注真能賺錢 東莞400電話怎么申請(qǐng) 費(fèi)用 安徽房產(chǎn)智能外呼系統(tǒng)推薦 地球商標(biāo)外呼系統(tǒng) 嘉峪關(guān)電銷 歷史地圖標(biāo)注軟件 和外呼系統(tǒng)指導(dǎo)思想

win10 1909 系統(tǒng)更新升級(jí)的時(shí)候出現(xiàn)了更新錯(cuò)誤代碼0x80073701,那么,當(dāng)win10 1909更新出現(xiàn)0x80073701錯(cuò)誤代碼時(shí)怎么解決呢?其實(shí)這可能是因?yàn)槲覀兊南到y(tǒng)兼容性的問(wèn)題,或者就是在升級(jí)過(guò)程中出現(xiàn)了故障??梢栽赪indows PowerShell中使用代碼進(jìn)行相應(yīng)修復(fù)即可。因?yàn)橛龅降腻e(cuò)誤信息不同,所以文章比較長(zhǎng),要有點(diǎn)耐心。

問(wèn)題:如何解決Windows 10更新錯(cuò)誤代碼:0x80073701?

0x80073701更新錯(cuò)誤,可能與您的更新組件缺失有關(guān)。

可以嘗試下方方法,手動(dòng)注冊(cè)Windows Update組件:

1.同時(shí)按【W(wǎng)in+X】鍵,點(diǎn)選【W(wǎng)indows PowerShell(管理員)】

2.拷貝下方的程序碼到剛打開(kāi)的PowerShell里面,按回車

3.忽略紅字錯(cuò)誤,重啟電腦

4.運(yùn)行Windows Update

$arch = Get-WMIObject -Class Win32_Processor -ComputerName LocalHost | Select-Object AddressWidth

Write-Host "1. Stopping Windows Update Services..."

Stop-Service -Name BITS

Stop-Service -Name wuauserv

Stop-Service -Name appidsvc

Stop-Service -Name cryptsvc

Write-Host "2. Remove QMGR Data file..."

Remove-Item "$env:allusersprofile\Application Data\Microsoft\Network\Downloader\qmgr*.dat" -ErrorAction SilentlyContinue

Write-Host "3. Renaming the Software Distribution and CatRoot Folder..."

Rename-Item $env:systemroot\SoftwareDistribution SoftwareDistribution.bak -ErrorAction SilentlyContinue

Rename-Item $env:systemroot\System32\Catroot2 catroot2.bak -ErrorAction SilentlyContinue

Write-Host "4. Removing old Windows Update log..."

Remove-Item $env:systemroot\WindowsUpdate.log -ErrorAction SilentlyContinue

Write-Host "5. Resetting the Windows Update Services to defualt settings..."

"sc.exe sdset bits 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:systemroot\system32

Write-Host "6. Registering some DLLs..."

regsvr32.exe /s atl.dll

regsvr32.exe /s urlmon.dll

regsvr32.exe /s mshtml.dll

regsvr32.exe /s shdocvw.dll

regsvr32.exe /s browseui.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.exe /s gpkcsp.dll

regsvr32.exe /s sccbase.dll

regsvr32.exe /s slbcsp.dll

regsvr32.exe /s cryptdlg.dll

regsvr32.exe /s oleaut32.dll

regsvr32.exe /s ole32.dll

regsvr32.exe /s shell32.dll

regsvr32.exe /s initpki.dll

regsvr32.exe /s wuapi.dll

regsvr32.exe /s wuaueng.dll

regsvr32.exe /s wuaueng1.dll

regsvr32.exe /s wucltui.dll

regsvr32.exe /s wups.dll

regsvr32.exe /s wups2.dll

regsvr32.exe /s wuweb.dll

regsvr32.exe /s qmgr.dll

regsvr32.exe /s qmgrprxy.dll

regsvr32.exe /s wucltux.dll

regsvr32.exe /s muweb.dll

regsvr32.exe /s wuwebv.dll

Write-Host "7) Removing WSUS client settings..."

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

Write-Host "8) Resetting the WinSock..."

netsh winsock reset

netsh winhttp reset proxy

Write-Host "9) Delete all BITS jobs..."

Get-BitsTransfer | Remove-BitsTransfer

Write-Host "10) Attempting to install the Windows Update Agent..."

if($arch -eq 64){

wusa Windows8-RT-KB2937636-x64 /quiet

}

else{

wusa Windows8-RT-KB2937636-x86 /quiet

}

Write-Host "11) Starting Windows Update Services..."

Start-Service -Name BITS

Start-Service -Name wuauserv

Start-Service -Name appidsvc

Start-Service -Name cryptsvc

Write-Host "12) Forcing discovery..."

wuauclt /resetauthorization /detectnow

Write-Host "Process complete. Please reboot your computer."

如何解決Windows 10更新錯(cuò)誤代碼:0x80073701?

Microsoft工程師建議在手動(dòng)執(zhí)行任何步驟之前運(yùn)行系統(tǒng)文件檢查器和DISM工具。如果這些0x80073701錯(cuò)誤修復(fù)無(wú)效,請(qǐng)不要忘記嘗試運(yùn)行Windows Update疑難解答程序,該程序是一種自動(dòng)化實(shí)用程序,可自動(dòng)修復(fù)更新錯(cuò)誤。如果它也不起作用,那么請(qǐng)轉(zhuǎn)到手動(dòng)錯(cuò)誤代碼0x80073701修復(fù)程序。

方法1.重置Windows更新

按Win鍵+ X并選擇命令提示符(管理員)。

禁用BITS,加密,MSI安裝程序和Windows更新服務(wù)。為此,在命令提示符窗口中鍵入以下命令并在每個(gè)命令提示符后按Enter鍵:net stop wuauservnet stop cryptSvcnet停止位net stopmsiserver

現(xiàn)在重命名SoftwareDistribution和Catroot2文件夾。為此,請(qǐng)?jiān)诖翱谥墟I入以下命令并在每個(gè)命令后鍵入Enter:ren C:\ Windows \ SoftwareDistribution SoftwareDistribution.oldren C:\ Windows \ System32 \ catroot2 Catroot2.old

現(xiàn)在啟用BITS,加密,MSI安裝程序和Windows更新服務(wù)(以前禁用)。為此,您必須輸入以下命令并在每個(gè)命令后按Enter鍵:net start wuauservnet start cryptSvcnet start bitsnet startmsiserver

關(guān)閉命令提示符并重新啟動(dòng)您的PC。

方法2.檢查Windows日期和時(shí)間設(shè)置

用鼠標(biāo)右鍵單擊Win鍵并選擇控制面板。

選擇時(shí)鐘,語(yǔ)言和區(qū)域選項(xiàng)。

點(diǎn)擊更改設(shè)置按鈕。

標(biāo)記與Internet時(shí)間服務(wù)器同步,然后單擊立即更新。

最后,點(diǎn)擊確定并關(guān)閉所有內(nèi)容。

重新啟動(dòng)您的電腦。

方法3.手動(dòng)下載并安裝更新KB3081440

導(dǎo)航到微軟官方網(wǎng)站并下載更新KB3081440。它會(huì)自動(dòng)刪除KB3206632的殘留。注:不要忘記選擇支持您的操作系統(tǒng)類型(32位或64位)的更新。

最后,專家建議安裝一個(gè)PC優(yōu)化工具,例如Reimage。它將適當(dāng)?shù)鼐S護(hù)存儲(chǔ)在系統(tǒng)中的Windows注冊(cè)表,系統(tǒng)文件和應(yīng)用程序。最重要的是,它將保護(hù)系統(tǒng)免受惡意軟件的侵害。

以上就是腳本之家小編給大家分享的win10更新1909提示錯(cuò)誤代碼0x80073701的解決方法步驟,此篇教程能夠幫組到你。

標(biāo)簽:白山 荊門 果洛 楊凌 合肥 濮陽(yáng) 廣東 北京

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《win10更新1909提示錯(cuò)誤代碼0x80073701解決步驟》,本文關(guān)鍵詞  win10,更新,1909,提示,錯(cuò)誤,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《win10更新1909提示錯(cuò)誤代碼0x80073701解決步驟》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于win10更新1909提示錯(cuò)誤代碼0x80073701解決步驟的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章