亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

Win10更新出現0x80073701錯誤如何解決

瀏覽:41日期:2022-11-13 17:23:23

Win10更新出現0x80073701錯誤如何解決?其實這可能是因為我們的系統兼容性的問題,或者就是在升級過程中出現了故障。可以在Windows PowerShell中使用代碼進行相應修復即可。

Win10更新出現0x80073701錯誤如何解決

問題:如何解決Windows 10更新錯誤代碼:0x80073701?

0x80073701更新錯誤,可能與您的更新組件缺失有關。

可以嘗試下方方法,手動注冊Windows Update組件:

1.同時按【Win+X】鍵,點選【Windows PowerShell(管理員)】

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

3.忽略紅字錯誤,重啟電腦

4.運行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:allusersprofileApplication DataMicrosoftNetworkDownloaderqmgr*.dat” -ErrorAction SilentlyContinue

Write-Host “3. Renaming the Software Distribution and CatRoot Folder.。。”

Rename-Item $env:systemrootSoftwareDistribution SoftwareDistribution.bak -ErrorAction SilentlyContinue

Rename-Item $env:systemrootSystem32Catroot2 catroot2.bak -ErrorAction SilentlyContinue

Write-Host “4. Removing old Windows Update log.。。”

Remove-Item $env:systemrootWindowsUpdate.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:systemrootsystem32

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 “HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate” /v AccountDomainSid /f

REG DELETE “HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate” /v PingID /f

REG DELETE “HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate” /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更新錯誤代碼:0x80073701?

Microsoft工程師建議在手動執行任何步驟之前運行系統文件檢查器和DISM工具。如果這些0x80073701錯誤修復無效,請不要忘記嘗試運行Windows Update疑難解答程序,該程序是一種自動化實用程序,可自動修復更新錯誤。如果它也不起作用,那么請轉到手動錯誤代碼0x80073701修復程序。

方法1.重置Windows更新

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

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

Win10更新出現0x80073701錯誤如何解決

現在重命名SoftwareDistribution和Catroot2文件夾。為此,請在窗口中鍵入以下命令并在每個命令后鍵入Enter:ren C: Windows SoftwareDistribution SoftwareDistribution.oldren C: Windows System32 catroot2 Catroot2.old

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

關閉命令提示符并重新啟動您的PC。

Win10更新出現0x80073701錯誤如何解決

方法2.檢查Windows日期和時間設置

用鼠標右鍵單擊Win鍵并選擇控制面板。

選擇時鐘,語言和區域選項。

點擊更改設置按鈕。

標記與Internet時間服務器同步,然后單擊立即更新。

最后,點擊確定并關閉所有內容。

重新啟動您的電腦。

方法3.手動下載并安裝更新KB3081440

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

最后,專家建議安裝一個PC優化工具,例如Reimage。它將適當地維護存儲在系統中的Windows注冊表,系統文件和應用程序。最重要的是,它將保護系統免受惡意軟件的侵害。

Win10更新出現0x80073701錯誤如何解決

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

標簽: Windows系統 win10
相關文章:
主站蜘蛛池模板: 欧美一级毛片大片免费播放 | 国产精品毛片无码 | 亚洲精品久久片久久 | 国产一区二区不卡免费观在线 | 爱涩涩 | 国产高清japanese国产在线观看 | 国产精品国产三级国产普通话对白 | 好吊色青青青国产欧美日韩 | 久久精品99无色码中文字幕 | 日本欧美久久久久免费播放网 | 清除唯美第一区二区三区 | 国产aⅴ精品一区二区三区久久 | 免费黄色的视频 | 日本另类xxxx | 亚洲午夜久久久 | 在线欧美精品一区二区三区 | 欧美特级黄 | 国产伦精品一区二区三区女 | 在线观看欧美国产 | 精品小视频在线 | 亚洲精品专区 | 亚洲第一区在线观看 | 免费一级a毛片在线播出 | 欧美日韩免费播放一区二区 | 色黄网站在线观看 | 亚洲一级黄色片 | 风流慈禧一级毛片在线播放 | 91欧美国产 | 久久五月女厕所一区二区 | 狠狠色丁香久久婷婷综合五月 | 在线观看精品国内福利视频 | 中文在线日本免费永久18近 | 精品入口麻豆传煤 | 麻豆传媒免费视频 | 国产日韩一区二区三区 | 丁香六月 久久久 | 劲爆激情欧美毛片 | 爱呦视频在线播放网址 | 啪啪网站在线观看 | 国产美女自拍视频 | 国产精品久久久久久久久免费观看 |