Everything will be fine without these, but AFAIK the fan control setting is saved in the BIOS, not controlled actively by any app, so nothing will change after uninstalling My Dell. Did you try the quiet profile? Answer from Miracle_Arranger on reddit.com
🌐
Reddit
reddit.com › r/dellxps › dell xps 17 9720. is it safe to remove "my dell" and "dell fusion service"?
r/DellXPS on Reddit: Dell XPS 17 9720. Is it safe to remove "My Dell" and "Dell Fusion Service"?
September 13, 2022 -

I've had this new laptop (XPS 17 9720, i9 processor, Nvidia RTX 3060, 4k screen) for a couple of weeks now. On day one I uninstalled all of Dell's bloatware except for the driver updater. The privacy agreement for Dell SupportAssist seemed particularly diabolical.

A week or two later, I'm noticing that my fans are a little loud and whiny. I don't think it's coil whine, I only notice it when I'm running a graphics-intensive program and the fans start spinning up. Probably normal, but I'm worried that I accidentally uninstalled some Dell program that was regulating fans and temperature in some proprietary and necessary way.

As far as I can tell, the only programs from Dell that would potentially affect fan behavior / temperature control are "My Dell" and "Dell Fusion Service." I'd rather not have these bloatware programs installed if I can help it, but it's not worth frying my CPU/GPU over it.

Are my fans and components okay without them, or do I need to reinstall these two programs?

Top answer
1 of 7
3
Right. Each program/app has a purpose in life. However, I too traditionally tend to like 'lean installs'. AFAIK, none of that Dell software is required for Windows-10/11 to run properly on a Dell laptop. I haven't looked at it real close since I was trying to run it as Dell shipped it. I kinda wanted to see what that experience is like for the average user. I don't worry so much about pre-installed programs that keep to themselves (the ones that have no associated Processes and Services that are constantly running in the background).  What I like to do is observe what Processes and Services are running, before properly uninstalling it's associated program the conventional way (and rebooting). Also, interesting to see what is still left behind. Actually, it doesn't seem too bad so far. I think it might be because these recent 11th-12th Gen Intel processors are just so powerful (plenty of cores and extra processing cycles to go around). Right. I always uninstall the (paid subscription) McAfee and replace with (Microsoft developed and freely included) Windows Security and their (software based) Firewall. It also seems less intrusive. MyDell already wanted to update itself, and said something about Dell Fusion. Not sure about now or on plain Dells, but Alienware Fusion used to be a Service that exposed various Windows Settings into a centralized app (like Alienware Command Center). It sometimes got confused or caused strange system problems so I always thought it was un-necessary (or not worth the trouble).  I don't use any of the 'Driver Updater programs'. Now-days, I get my drivers from Microsoft (Windows Update) and/or Nvidia/AMD. Rarely do I need a Dell validated file. I do get my occasional firmware and BIOS updates directly from Dell Support file-area and like to install those manually and in a more-controlled way. In the BIOS, I also keep UEFI Firmware Capsule Updates DISABLED (in case Windows-Updates tries to toss me one). As I glance-down that nice list you compiled, I think these 3 listed below are the only ones I might be compelled to keep. But if they don't do anything (or just ads or apps for subscriptions and/or In-App-Purchases) I think they ultimately need to be uninstalled as well.  Dell PremierColorDolby AccessDolby Vision Extensions Some people just 'clean install' generic/genuine Windows to get rid of all the Dell (or other manufacture's) un-wanted software ... but that is a quite a bit more involved procedure (especially on a live machine). Please post any additional info you come across (that you think might be helpful to others) as you uninstall the un-wanted ones (or find actual purpose for others).
2 of 7
0
Hi, If your system is under warranty and you have questions regarding Dell software, you can easily reach out to tech support right here. Just click the Get Help Now button at the bottom right corner of the page.
🌐
Dell
dell.com › dell community › desktops › alienware desktops
Alienware software & Dell Support Assist, as well as Fusion Service - Auto "Disable" from services | DELL Technologies
November 14, 2024 - Look at the event log. Any service that is being switched to the off state will be logged as an event ID7040 and list the user who performed the operation.
🌐
AskWoody
askwoody.com › home › forums › askwoody support › productivity software by function › non-ms apps/programs › removal of preinstalled dell software on xps 8930
Topic: Removal of Preinstalled Dell Software on XPS 8930 @ AskWoody
December 3, 2025 - I did not see anything on my own system that looked like an installer or uninstaller for some of those items. One minor correction to my previous comments, since I see you also have the “legacy” My Dell v2.2.6.0 UWP app on your XPS 8930. If you search for “Dell” at Control Panel | Programs | Programs and Features you should find the companion program name Fusion Service that’s required to run My Dell v2.x.
🌐
Autodesk
autodesk.com › support › technical › article › caas › sfdcarticles › sfdcarticles › How-to-uninstall-Fusion-360-using-the-Fusion-360-Service-Utility.html
How to uninstall Autodesk Fusion using the Fusion Service Utility
March 10, 2026 - How to uninstall Autodesk Fusion using the Fusion Service Utility. Note: See How to start the Fusion Service Utility for invoking the tool. To uninstall Fusion using the Service Utility: Start Fusion Service Utility. See How to start the Fusion Service Utility. Select Uninstall. Click Yes, Proceed
🌐
File.net
file.net › process › fusionservice.exe.html
FusionService.exe Windows process - What is it?
FusionService.exe is located in ... bytes. The file is not a Windows core file. The FusionService.exe file is digitally signed. The process can be uninstalled in the Control Panel....
🌐
Dell
dell.com › dell community › laptops › xps
XPS 15 9570, Dell Fusion Service, Dell Power Manager Service | DELL Technologies
November 10, 2021 - The Fusion Service is needed for My Dell and My Alienware 1.8 or greater. So if you are running those apps, yes, uninstall Dell Power Manager Service and install My Dell Fusion Service.
🌐
Dell
dell.com › dell community › laptops › locked topics – alienware general
Request - Remove AlienFusion from Command Center | DELL Technologies
September 30, 2021 - Dell Engineering, Please consider removing AlienFusion from CommandCenter. It causes problems on systems. At least, make it optional or give users an easy way to turn it off or disable it. Ver...
Find elsewhere
🌐
Reddit
reddit.com › r/powershell › uninstalling dell bloatware
r/PowerShell on Reddit: Uninstalling Dell Bloatware
May 16, 2022 -

Hi all, I've been looking for a PS script that I can push through Intune to uninstall the pre-installed Dell Bloatware apps (Dell Optimizer, Dell Power Manager, SupportAssist, etc), but have been unsuccessful in my attempts so far. The closest I have gotten to a working script is the following:

$listofApps = get-appxpackage
$apptoRemove = $ListofApps | where-object {$_ -like "*Optimizer*"}
Remove-AppxPackage -package $apptoRemove.packagefullname 

$listofApps2 = get-appxpackage
$apptoRemove2 = $listofApps2 | where-object {$_ -like "*PowerManager*"}
Remove-AppxPackage -package $apptoRemove2.packagefullname

$listofApps3 = get-appxpackage
$apptoRemove3 = $listofApps3 | where-object {$_ -like "*SupportAssist*"}
Remove-AppxPackage -package $apptoRemove3.packagefullname

$listofApps4 = get-appxpackage
$apptoRemove4 = $listofApps4 | where-object {$_ -like "*DigitalDelivery*"}
Remove-AppxPackage -package $apptoRemove4.packagefullname        

All this does though, is remove the program from the start/search menu. The programs still appear in the Control Panel-> Program List

Any and all help is greatly appreciated

🌐
ProcessChecker
processchecker.com › file › FusionService.exe.html
What is FusionService.exe ? FusionService.exe info
If you encounter difficulties with FusionService.exe , you can uninstall the associated program (Start > Control Panel > Add/Remove programs
Top answer
1 of 14
1
Dell SupportAssist Remediation is a software tool provided by Dell to help diagnose and resolve issues with your Dell computer. If you wish to uninstall it, you can follow these steps: Option 1: Uninstall via Windows Settings Press Windows Key + I to open the Windows Settings. Click on 'Apps' or 'Apps & Features' depending on your Windows version. In the list of installed applications, locate 'Dell SupportAssist Remediation' or similar Dell SupportAssist components. Click on it to select it. Click the 'Uninstall' button. Follow the on-screen prompts to complete the uninstallation process. Option 2: Uninstall via Control Panel (for older Windows versions) If you're using an older version of Windows that doesn't have the Settings app, you can use the Control Panel: Press Windows Key + R to open the Run dialog. Type 'control' and press Enter to open the Control Panel. In the Control Panel, select 'Programs' or 'Programs and Features' (the wording may vary depending on your Windows version). Find 'Dell SupportAssist Remediation' or any related Dell SupportAssist programs in the list of installed programs. Click on it to select it. Click the 'Uninstall' button. Follow the on-screen instructions to complete the uninstallation. After completing either of these methods, Dell SupportAssist Remediation should be removed from your system. Make sure to restart your computer if prompted to do so after the uninstallation process is finished. Please note that if you're using Dell SupportAssist as part of Dell's comprehensive support suite and you're having issues with it, you might consider contacting Dell support for assistance with troubleshooting or resolving any problems you're experiencing. Uninstalling Dell SupportAssist Remediation should only be done if you're certain you no longer want it on your system.
2 of 14
1
We would like to unistall this 'tool' via software deployment system. Is there a way to unistall it unattended for all different version? Maybe Dell or a User has a script for this?
🌐
Quora
quora.com › Is-it-safe-to-uninstall-Dell-SupportAssist
Is it safe to uninstall Dell 'SupportAssist'? - Quora
Answer (1 of 2): Yes, it is safe to uninstall it. All it is supposed to do is link you directly to Dell’s website and forward your system configuration and Dell service tag info to them, so that the information they present to you is for your pc only. Usually, I delete all Dell and manufacturer...
🌐
Should I Remove It?
shouldiremoveit.com › my-dell-client-framework-119371-program.aspx
Should I remove My Dell Client Framework by Dell?
Windows Vista/7/8/10: Click Uninstall. Windows XP: Click the Remove or Change/Remove tab (to the right of the program). Follow the prompts. A progress bar shows you how long it will take to remove My Dell Client Framework. ... Dell manufactures, sells and supports computers and related products and services.
Top answer
1 of 10
2
Problem solved - at least for me - since no one from Dell as responded to my questions. I uninstalled Dell Update for Windows Universal v5.5.0 (as well as the Dell Core Services v1.10.33.0 added during the DU v5.5.0 installation) with Revo Uninstaller Free, and I don't plan to reinstall DU. The only Dell app left on my Inspiron 5584 (other than an old Dell CinemaColor UWP app, which I've never used) is MyDell v2.2.6.0 UWP app, which requires Dell's Fusion Service v2.2.14.0.  Here's what my C:\Program Files\Dell folder looks like now, in contrast to the image in my original post showing the multiple folders created and/or modified on 02-Apr-2025 after I updated from Dell Update for Windows Universal v5.4.0 to v5.5.0. _______________________________________________ WARNING: Uninstalling Dell Core Services v1.10.33.0 installation using Revo Uninstaller in Aggressive Mode removed my Dell TechHub service ** (used by SupportAssist to run diagnostic hardware scans) and Dell Client Management Service (a shared Dell service previously required for older Dell software like SupportAssist v3.x and Dell Update for Windows Universal v5.4.0 and earlier), which could potentially damage other Dell software installed on your system. I had already removed all my SupportAssist-related software (SupportAssist, Dell SupportAssist Remediation, Dell SupportAssist OS Recovery Plugin for Dell-Update) two years ago so this wasn't a great concern for me. Before allowing Revo Uninstaller to delete orphaned file and registry remnants left behind by the 'normal' Control Panel uninstall of Dell Core Services I noticed that components of the Fusion Service required for my remaining MyDell v2.2.6.0 UWP app were selected for removed.  After uninstalling Dell Update for Windows Universal v5.5.0 and Dell Core Services v1.10.33.0 using Revo Uninstaller in Aggressive Mode I confirmed that MyDell v2.2.6.0 would launch, but it repeatedly failed to install a program update detected during the initial auto-check for updates. This was easily remedied by uninstalling Fusion Service v2.2.14.0 and then reinstalling with a fresh copy of the Fusion Service installer downloaded from my Inspiron 5584 support page, and MyDell v2.2.6.0 and Fusion Service both appear to be running correctly again. ** NOTE: Removal of the Dell TechHub service does not prevent me from running the F12 ePSA (enhanced Pre-boot System Assessment) on-board hardware diagnostics from my Dell BIOS.-----------Dell Inspiron 15 5584 * 64-bit Win 10 Pro v22H2 build 19045.5737 * Firefox v137.0.2 * Microsoft Defender v4.18.25030.2-1.1.25030.1 * Malwarebytes Premium v5.2.11.183-131.0.5227 * Macrium Reflect Free v8.0.7783 * My Dell v2.2.6.0 * Fusion Service 2.2.14.0 * Revo Uninstaller Free Portable v2.5.8
2 of 10
0
Just FYI, I discovered another surprise that isn't mentioned in the current Dell Update 5.x Release Notes revised 01-Apr-2025 for v5.5.0. If you expand the Important Information section of the installer details for Dell Update for Windows Universal v5.5.0 (Dell-Update-Windows-Universal-Application_7CJ1W_WIN64_5.5.0_A00.EXE) it states in part: 'DellClientManagementService is deleted when the DU v5.4 to DU v5.5 upgrade takes place when .NET 8 is not installed on the client (Upgrade & Fresh Install): DU 5.5 needs .NET 8 for a successful installation. Otherwise, the installation will rollback and the previous version of DU will be removed. .NET 8 is a prerequisite for the installation of DU v5.5.' Coincidentally, the MS .NET Desktop Runtime v8.0 was already installed on my Inspiron 5584 (it's a system requirement for my QuickInstaller software) before I started the upgrade from v5.4.0 to 5.5.0 so the upgrade to v5.5.0 did not abort on my system and/or remove Dell Client Management Service (a system requirement for the previous Dell Update v5.4.0 and a few other Dell utilities) from my Windows Services. NOTE: The image above of my Windows Services was captured on 02-Apr-2025 BEFORE I manually disabled the Dell TechHub service that was added to my Inspiron 5584 during the update to Dell Update for Windows Universal v5.5.0.-----------Dell Inspiron 15 5584 * 64-bit Win 10 Pro v22H2 build 19045.5608 * Firefox v137.0.0 * Microsoft Defender v4.18.25020.1009-1.1.25030.1 * Malwarebytes Premium v5.2.9.176-129.0.5196 * Macrium Reflect Free v8.0.7783 * Dell Update for Windows Universal v5.5.0 * My Dell v2.2.6.0 * Fusion Service 2.2.14.0
Top answer
1 of 7
3
Right. Each program/app has a purpose in life. However, I too traditionally tend to like 'lean installs'. AFAIK, none of that Dell software is required for Windows-10/11 to run properly on a Dell laptop. I haven't looked at it real close since I was trying to run it as Dell shipped it. I kinda wanted to see what that experience is like for the average user. I don't worry so much about pre-installed programs that keep to themselves (the ones that have no associated Processes and Services that are constantly running in the background).  What I like to do is observe what Processes and Services are running, before properly uninstalling it's associated program the conventional way (and rebooting). Also, interesting to see what is still left behind. Actually, it doesn't seem too bad so far. I think it might be because these recent 11th-12th Gen Intel processors are just so powerful (plenty of cores and extra processing cycles to go around). Right. I always uninstall the (paid subscription) McAfee and replace with (Microsoft developed and freely included) Windows Security and their (software based) Firewall. It also seems less intrusive. MyDell already wanted to update itself, and said something about Dell Fusion. Not sure about now or on plain Dells, but Alienware Fusion used to be a Service that exposed various Windows Settings into a centralized app (like Alienware Command Center). It sometimes got confused or caused strange system problems so I always thought it was un-necessary (or not worth the trouble).  I don't use any of the 'Driver Updater programs'. Now-days, I get my drivers from Microsoft (Windows Update) and/or Nvidia/AMD. Rarely do I need a Dell validated file. I do get my occasional firmware and BIOS updates directly from Dell Support file-area and like to install those manually and in a more-controlled way. In the BIOS, I also keep UEFI Firmware Capsule Updates DISABLED (in case Windows-Updates tries to toss me one). As I glance-down that nice list you compiled, I think these 3 listed below are the only ones I might be compelled to keep. But if they don't do anything (or just ads or apps for subscriptions and/or In-App-Purchases) I think they ultimately need to be uninstalled as well.  Dell PremierColorDolby AccessDolby Vision Extensions Some people just 'clean install' generic/genuine Windows to get rid of all the Dell (or other manufacture's) un-wanted software ... but that is a quite a bit more involved procedure (especially on a live machine). Please post any additional info you come across (that you think might be helpful to others) as you uninstall the un-wanted ones (or find actual purpose for others).
2 of 7
0
Hi, If your system is under warranty and you have questions regarding Dell software, you can easily reach out to tech support right here. Just click the Get Help Now button at the bottom right corner of the page.
🌐
Dell
dell.com › dell community › laptops › xps
Fusion Service terminated unexpectedly | DELL Technologies
October 9, 2022 - Dear all, do we have this issue of My Dell app starting and then asks for a service to start. It's the Fusion Service. Checking in the Services. MSc found that the service is stopped. but unable to start it again. I have uninstalled fusion service, my dell, restarted, downloaded latest fusion ...