Windows 10 焦點照片無法更新問題…
1.刪除 “%userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_xxx\下 \LocalState\Assets 和 \Settings 資料夾內的檔案
2.PowerShell :
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
3.若還不行 :
Powershell :
$manifest = (Get-AppxPackage *ContentDeliveryManager*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
參考資料 :
https://www.drivereasy.com/knowledge/windows-10-spotlight-not-working-fixed/