Skip to content

ServiceDeskCSI/Dell-Bloatware-Removal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

9 Commits
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Dell Bloatware Removal Tool

This PowerShell script is designed to silently uninstall Dell-branded software from Windows systems. It targets known MSI and EXE-based bloatware, scans for additional installed Dell software via the registry, and cleans up Dell-related services and scheduled tasks.


๐Ÿ”ง Features

  • โœ… Uninstalls known Dell apps via MSI GUIDs
  • โœ… Executes silent uninstalls of EXE-based Dell apps
  • โœ… Dynamically finds and removes additional Dell entries via registry
  • โœ… Removes Dell services and scheduled tasks
  • โœ… Logs all actions and errors to C:\Temp\DellBloatwareRemoval.log

โš ๏ธ Warning

This tool is aggressive. It will remove a wide range of Dell software including:

  • Dell Update
  • Dell SupportAssist
  • Dell Digital Delivery
  • Dell Power Manager
  • Dell Optimizer
  • Dell Peripheral/Display Manager
  • Foundation/Core/Watchdog services

Use in production environments with caution.


๐Ÿ“‚ Installation

  1. Save the script as RemoveDellBloatware.ps1.

  2. Open PowerShell as Administrator.

  3. Optional: Bypass script execution policy for the session:

    Set-ExecutionPolicy Bypass -Scope Process -Force
    
    .\RemoveDellBloatware.ps1