Để xóa tất cả các ứng dụng CHỈ khỏi tài khoản người dùng của bạn (và không xóa thứ gì quan trọng!), Hãy sử dụng lệnh này trong PowerShell:
Get-AppxPackage |
Where-Object Name -notlike *Libs* |
Where-Object Name -notlike *Native* |
Where-Object Name -ne Microsoft.WindowsStore |
Where-Object Name -ne Microsoft.DesktopAppInstaller |
Where-Object Name -ne Microsoft.StorePurchaseApp |
Where-Object Name -ne Microsoft.AccountsControl |
Where-Object Name -ne Microsoft.BioEnrollment |
Where-Object Name -ne Microsoft.CredDialogHost |
Where-Object Name -ne Microsoft.LockApp |
Where-Object Name -ne Microsoft.MicrosoftEdge |
Where-Object Name -ne windows.immersivecontrolpanel |
Where-Object Name -notlike *Windows.* |
Where-Object Name -ne c5e2524a-ea46-4f67-841f-6a9465d9d515 |
Where-Object Name -ne 1527c705-839a-4832-9118-54d4Bd6a0c89 |
Where-Object Name -ne DesktopView |
Where-Object Name -ne E2A4F912-2574-4A75-9BB0-0D023378592B |
Where-Object Name -ne EnvironmentsApp |
Where-Object Name -notlike *Microsoft.Services.Store* |
Where-Object Name -notlike Microsoft.AAD.BrokerPlugin* |
Where-Object Name -notlike Microsoft.Win32WebViewHost* |
Where-Object Name -notlike Microsoft.XboxGameCallableUI* |
Where-Object Name -notlike Microsoft.PPIProjection* |
Where-Object Name -notlike Microsoft.MicrosoftEdgeDevToolsClient* |
Where-Object Name -notlike Microsoft.ECApp* |
Where-Object Name -notlike Microsoft.AsyncTextService* |
Where-Object Name -notlike InputApp* |
Where-Object Name -notlike F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE* |
Remove-AppxPackage
Đừng lo lắng, trong trường hợp nếu bạn muốn lấy lại chúng, chúng sẽ không bị mất - bạn có thể tìm thấy tất cả chúng trong ứng dụng Store và tải lại chúng.
Nhưng với mỗi người dùng mới, các ứng dụng sẽ được tự động cài đặt trong hồ sơ của họ. Để tránh điều đó và loại bỏ hoàn toàn các "ứng dụng được cung cấp" này, hãy sử dụng lệnh này:
Get-AppxProvisionedPackage -Online |
Where-Object DisplayName -ne Microsoft.StorePurchaseApp |
Where-Object DisplayName -ne Microsoft.WindowsStore |
Where-Object DisplayName -ne Microsoft.DesktopAppInstaller |
Remove-ProvisionedAppxPackage -Online
Quy tắc tương tự được áp dụng - nếu bạn muốn lấy lại ứng dụng - chỉ cần cài đặt nó thông qua Store.