網站首頁 教育 學前教育 精緻生活 飲食養生 命理 科普教育 金融 歷史 影視 數碼 熱門資訊
當前位置:生活百科站 > 數碼 > 

windows10錯誤程式碼0x80070490

欄目: 數碼 / 釋出於: / 人氣:1.99W

當我們在使用安裝了win10作業系統電腦的時候,對於使用的過程中系統出現的windows10錯誤程式碼0x80070490,如果不知道是怎麼回事需要怎樣解決的話,小編覺得我們可以嘗試一下在管理員許可權下開啟命令提示符,手動註冊Windows Update元件即可。詳細步驟就來看下小編是怎麼做的吧~

windows10錯誤程式碼0x80070490

方法一:

手動註冊Windows Update元件:

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

2. 拷貝下方的程式碼到剛開啟的PowerShell裡面,按回車

windows10錯誤程式碼0x80070490 第2張

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*" -ErrorAction SilentlyContinue

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

Rename-Item $env:systemrootSoftwareDistribution -ErrorAction SilentlyContinue

Rename-Item $env:systemrootSystem32Catroot2 -ErrorAction SilentlyContinue

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

Remove-Item $env: -ErrorAction SilentlyContinue

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

" sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"

" 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..."

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

/s

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."

windows10錯誤程式碼0x80070490 第3張

方法二:

使用sfc /scannow和Dism自動掃描和修補系統檔案,然後再重啟電腦:

1.右鍵點選工作列上的Windows圖示,選擇【Microsoft Powershell(管理員)】

2.逐一輸入以下指令:

Dism /Online /Cleanup-Image /CheckHealth

windows10錯誤程式碼0x80070490 第4張

Dism /Online /Cleanup-Image /ScanHealth

Dism /Online /Cleanup-Image /RestoreHealth

sfc /scannow

windows10錯誤程式碼0x80070490 第5張

3.重啟電腦

4.如果出現”有一些檔案無法修復“的回報,重複步驟1-3幾次