PC Optimization #windows-11#bloatware#optimization

Windows 11 Debloat Guide: Remove Bloatware

Remove bloatware, pre-installed apps, and unwanted software from Windows 11 safely and effectively.

9 min read

Windows 11 arrives pre-loaded with 50+ bloatware applications—games, shopping apps, cloud services, and promotional software that consume disk space, RAM, and battery life. Removing these unwanted programs reclaims storage, improves performance, and reduces background processes significantly.

What Is Windows 11 Bloatware?

Pre-installed applications consuming resources without user necessity:

  • Games: Candy Crush, Xbox App
  • Productivity: Outlook, OneDrive, Teams
  • Services: Cortana, Windows Tips
  • Advertising: News and Interests, Microsoft Store promotions
  • Telemetry: Various data collection apps

Removing bloatware can free 10-50 GB of disk space and reduce RAM usage by 300-500 MB.

Method 1: Remove Apps via Settings (Easiest)

Works for most bloatware with a graphical interface.

  1. Press Win + I to open Settings
  2. Go to Apps > Installed apps
  3. Scroll through the list to find unwanted applications
  4. Click the three-dot menu next to the app
  5. Select Uninstall
  6. Click Uninstall again in the confirmation dialog
  7. Wait for removal (30 seconds to 2 minutes)
  8. Repeat for other apps

Common bloatware to remove:

  • Candy Crush Saga
  • Disney+
  • Xbox App (if not used)
  • Cortana (Windows Search still works)
  • Windows Tips
  • OneDrive (if not needed)
  • Outlook
  • News and Interests
  • Get Help
  • Feedback Hub
  • People
  • Photos (if you use third-party viewer)
  • Maps
  • Mail and Calendar

Method 2: Remove Apps via PowerShell (Comprehensive)

PowerShell removes apps that Settings may not allow, including system apps.

Remove Specific Bloatware

Open PowerShell as Administrator and run:

# Remove Candy Crush
Get-AppxPackage "*CandyCrush*" | Remove-AppxPackage

# Remove Xbox App
Get-AppxPackage "*XboxApp*" | Remove-AppxPackage

# Remove News
Get-AppxPackage "*news*" | Remove-AppxPackage

# Remove Cortana
Get-AppxPackage "*Cortana*" | Remove-AppxPackage

# Remove Photos
Get-AppxPackage "*photos*" | Remove-AppxPackage

# Remove Mail and Calendar
Get-AppxPackage "*mail*" | Remove-AppxPackage
Get-AppxPackage "*calendar*" | Remove-AppxPackage

# Remove Maps
Get-AppxPackage "*maps*" | Remove-AppxPackage

# Remove Get Help
Get-AppxPackage "*GetHelp*" | Remove-AppxPackage

Remove All Bloatware at Once

For aggressive debloating:

# Remove multiple bloatware apps in bulk
$bloatware = @(
    "*CandyCrush*",
    "*XboxApp*",
    "*XboxGameOverlay*",
    "*News*",
    "*Cortana*",
    "*Photos*",
    "*Mail*",
    "*Calendar*",
    "*Maps*",
    "*GetHelp*",
    "*FeedbackHub*",
    "*People*",
    "*MicrosoftTeams*",
    "*OutlookForWindows*",
    "*Disney*",
    "*Hulu*",
    "*Netflix*",
    "*Spotify*"
)

foreach ($app in $bloatware) {
    Get-AppxPackage $app | Remove-AppxPackage -ErrorAction SilentlyContinue
}

This removes dozens of bloatware apps in seconds.

Method 3: Disable Bloatware Services

Some bloatware runs as background services even after uninstalling the app. Disable them:

Via Services Manager

  1. Press Win + R, type services.msc, and press Enter
  2. Find these services and right-click each:
    • DiagTrack (Connected User Experiences)
    • dmwappushservice (Telemetry)
    • MapsBroker (Maps service)
    • OneSyncSvc (OneDrive sync)
    • Cortana (if removed)
  3. Select Properties
  4. Set Startup type to Disabled
  5. Click Stop to disable immediately
  6. Click OK

Via PowerShell

# Disable bloatware services
$services = @(
    "DiagTrack",
    "dmwappushservice",
    "MapsBroker",
    "OneSyncSvc"
)

foreach ($service in $services) {
    Set-Service -Name $service -StartupType Disabled -ErrorAction SilentlyContinue
    Stop-Service -Name $service -Force -ErrorAction SilentlyContinue
}

Method 4: Remove Bloatware from Fresh Windows Install

For complete control during installation:

  1. During Windows 11 setup, skip the Microsoft account login if possible
  2. Use a local account instead
  3. After installation, immediately run the PowerShell debloating script above
  4. This prevents most bloatware from ever installing

Method 5: Use Third-Party Debloating Tools

O&O AppBuster

W11Boost

  • One-click debloating tool
  • Removes common Windows 11 bloatware
  • Simple interface, effective removal

Bulk Crap Uninstaller (BCU)

Recommendation: Use PowerShell (Method 2) for precision, or O&O AppBuster for guided removal.

Advanced: Remove OneDrive Completely

OneDrive is deeply integrated but removable:

# Uninstall OneDrive completely
$oneDrivePath = "$env:USERPROFILE\OneDrive"
takeown /F $oneDrivePath /R /A
icacls $oneDrivePath /grant:r "%USERNAME%":F /T
Remove-Item $oneDrivePath -Recurse -Force -ErrorAction SilentlyContinue

# Uninstall OneDrive application
taskkill /f /im OneDrive.exe
C:\Windows\SysWOW64\OneDriveSetup.exe /uninstall

Then remove from registry:

# Remove OneDrive registry entries
Remove-Item "HKCU:\Software\Microsoft\OneDrive" -Recurse -ErrorAction SilentlyContinue
Remove-Item "HKLM:\Software\Microsoft\OneDrive" -Recurse -ErrorAction SilentlyContinue

Warning: Only remove OneDrive if you don’t use cloud storage. Reinstalling is complex.

Method 6: Disable App Suggestions and Microsoft Store Promotions

  1. Press Win + ISettings
  2. Go to System > Notifications
  3. Toggle off Get tips and suggestions
  4. Go to Apps > App suggestions
  5. Set Get app suggestions to Off
  6. Go to Apps > Microsoft Store
  7. Toggle off App installer
  8. Go to Privacy & Security > General
  9. Toggle off Tailored experiences and Ads personalization

Impact of Debloating

After removing bloatware:

MetricBeforeAfterImprovement
Disk Space30 GB used20 GB used+10 GB free
RAM at Idle3.5 GB2.8 GB-700 MB
Startup Time45 seconds25 seconds-20 seconds
Background Processes8545-40 processes

Safe Removal Checklist

Before removing an app:

  • ✓ Is it truly unnecessary?
  • ✓ Do you have system restore backup?
  • ✓ Will removal break system functionality?
  • ✓ Is it a Windows core component (avoid if unsure)?

Apps SAFE to remove:

  • Games (Candy Crush, Disney+, etc.)
  • Outlook, Mail, Calendar
  • Maps, Weather, News
  • Xbox App (unless gaming)
  • Cortana
  • Photos (if not primary viewer)

Apps to AVOID removing:

  • Windows Update components
  • Drivers
  • Security (Windows Defender)
  • System libraries (.NET, Visual C++)

Recovery: Reinstall Removed Bloatware

If you need to reinstall a removed app:

# Reinstall all bloatware
Get-AppxPackage -AllUsers | Where-Object {$_.InstallLocation -notlike "*System*"} | 
  ForEach-Object { Add-AppxPackage -Register "$($_.InstallLocation)\AppXManifest.xml" }

Or reinstall from Microsoft Store individually.

Conclusion

Debloating Windows 11 is straightforward and dramatically improves system performance and storage usage. Use PowerShell for complete control, Settings for simple removal, or third-party tools for guided assistance. After debloating, your system will feel noticeably faster, with more free disk space and reduced background activity.

Clean up your Windows 11 installation today and enjoy a leaner, faster operating system.

#cleanup #optimization #bloatware #windows-11