错误代码
错误代码:0xffffffea
如果代码不一样,此方法不一定能行。
为什么是临时
因为我曾经修复过一次,结果最近又复发了。
错误的损失
发生这个错误要警惕,如果你的Onedrive有多个设备同步的话,这个错误会导致同步异常,很有可能会丢失数据。
解决办法
powershell执行以下命令(管理员模式):
%localappdata%\Microsoft\OneDrive\onedrive.exe /reset
$ProfilePath = $env:HOMEPATH
remove-item -Path "$env:HOMEPATH\AppData\Local\OneDrive" -Recurse -ErrorAction Continue
remove-item -Path "$env:HOMEPATH\AppData\Local\Temp\*" -Recurse -ErrorAction Continue
remove-item -Path "$env:HOMEPATH\AppData\LocalLow\Temp\*" -Recurse -ErrorAction Continue
remove-item -Path "C:\Windows\Temp\*" -Recurse -ErrorAction Continue
Restart-Computer