@edsfodWindows 11 OneDrive 完全清理指南 中发帖

Windows 11 OneDrive 完全清理指南

适用场景:不使用 OneDrive,想彻底解除 KFM 接管、清空同步内容、卸载应用、删除残留。
操作顺序很重要,不要跳步。


前置检查
1. 确认 OneDrive 里有多少东西

$onedrive = "$env:USERPROFILE\OneDrive"

$size = (Get-ChildItem $onedrive -Recurse -Force -ErrorAction SilentlyContinue | Measure-Object -Property Length -Sum).Sum

"{0:N2} MB" -f ($size / 1MB)

Get-ChildItem $onedrive -Directory -Force | ForEach-Object {

$s = (Get-ChildItem ...