1 Rookie
•
3 Posts
•
20 Points
6
4304
May 10th, 2026 05:00
XPS 15 9530 - BSOD CRITICAL_PROCESS_DIED caused by DellSupportAss / SupportAssist Remediation 5.5.16.0
System:
- Dell XPS 15 9530
- BIOS: 1.29.0
- Windows 11, ntkrnlmp.exe 10.0.26100.8328
Issue:
After Dell SupportAssist Remediation 5.5.16.0 and Dell SupportAssist OS Recovery Plugin for Dell Update 5.5.16.0 were installed/updated on 2026-05-08, the system started rebooting unexpectedly with BSOD.
Reliability Monitor and WER show:
- EventType: BlueScreen
- Bugcheck: 0xEF CRITICAL_PROCESS_DIED
WinDbg analysis of 051026-19078-01.dmp:
CRITICAL_PROCESS_DIED (ef)
Arg1: ffffa4810316e080
Arg2: 0000000000000000
Arg3: ffffa4810316e080
Arg4: 0000000000000000
PROCESS_NAME: DellSupportAss
CRITICAL_PROCESS: DellSupportAss
FAILURE_BUCKET_ID:
0xEF_DellSupportAss_BUGCHECK_CRITICAL_PROCESS_fc1ea0c0_nt!PspCatchCriticalBreak
The process found on the system is:
C:\Program Files\Dell\SARemediation\agent\DellSupportAssistRemedationService.exe
Relevant services:
- Dell SupportAssist Remediation: Running, Automatic
- SupportAssistAgent: Running, Automatic
- DellTechHub: Running, Automatic
Installed Dell components:
- Dell SupportAssist Remediation 5.5.16.0, installed 2026-05-08
- Dell SupportAssist OS Recovery Plugin for Dell Update 5.5.16.0, installed 2026-05-08
- Dell SupportAssist 5.0.1.2516
- Dell Command | Update 5.7.0
Question:
Is this a new issue with Dell SupportAssist Remediation 5.5.16.0 / OS Recovery Plugin 5.5.16.0?
The previous workaround is dated 2020. Is there an official workaround or fixed version?
For now, I disabled only “Dell SupportAssist Remediation” service and it seems working ( before it restarted every 30 minutes).


bc_89
1 Rookie
•
2 Posts
•
10 Points
0
May 11th, 2026 14:41
@degasus Thank you! We will do the same.
TracyleeD
1 Rookie
•
6 Posts
•
32 Points
0
May 11th, 2026 15:33
You only need to uninstall the Dell SupportAssist Remediation software. It is not needed if you are supporting your own fleet of Dell laptops. FYI, you can push out a registry setting via GPO to disable the related service, but, the service will eventually reset back and start up again!
dmb1114
1 Rookie
•
1 Message
•
5 Points
0
May 11th, 2026 23:32
Same exact problem on Dell Inspiron 3020. What is the fix?
Nolito84
1 Rookie
•
2 Posts
•
14 Points
1
May 12th, 2026 10:45
Same here on an Alienware M16 R2 — exact same issue.
I’ve been dealing with the same random BSODs (“Critical Process Died – 0xEF”) during the last days, and after checking the minidumps with WinDbg I got the same culprit:
In my case the crashes happened every 20–60 minutes, completely at random. Hardware diagnostics were clean, SSD and RAM healthy, BIOS fine… nothing pointed to a hardware failure.
I uninstalled:
Dell SupportAssist
SupportAssist Remediation
OS Recovery Plugin
…the system became 100% stable again.
So yes, it definitely looks like the latest SupportAssist update is causing these crashes on the M16 R2. Hopefully Dell takes a look at this because it’s affecting more users than it seems.
BrianCW
1 Rookie
•
1 Message
•
5 Points
0
May 12th, 2026 11:29
Same problem - laptop was rebooting every 37 minutes. Uninstalled Dell SupportAssist. All good.
DELL-Daniel V
Community Manager
•
519 Posts
•
2.7K Points
0
May 12th, 2026 13:09
Hi All,
Dell is aware of the issue and it is currently under investigation. For users in warranty, contact Dell GHN (Get Help Now) chat technical support Monday through Friday. Click the blue "Get Help Now" on the right to start a private live chat session. Share the private Service Tag with them so that they can verify the ownership and warranty status. This will also generate a unique Technical Support case for your unique Service Tag. If already out of warranty, we'll share any updates we may receive as we get them.
As a workaround, many users report success with disabling the Dell SupportAssist Remediation service.
(edited)
ThomasDe82
1 Rookie
•
1 Message
•
5 Points
0
May 12th, 2026 14:24
I have the exact same issue, also since the update a couple of days ago. Rather than uninstallating the remediation software, will Dell provide a software update?
DELL-Daniel V
Community Manager
•
519 Posts
•
2.7K Points
0
May 12th, 2026 14:30
@ThomasDe82 I don't have exact confirmation on what our fix will be or an ETA on it. That said, it would be likely for us to role out some sort of hot patch. For the time being, I would recommend disabling the Dell Support Assist Remediation service as this is what users have reported to have resolved the issue for now.
djgoulson
1 Rookie
•
1 Message
•
5 Points
0
May 12th, 2026 15:35
I work in a large school district and we are seeing this happen all over the district now. Has DELL even acknowledged the issue yet?
TracyleeD
1 Rookie
•
6 Posts
•
32 Points
0
May 12th, 2026 15:40
@DELL-Daniel V this does not work unless you diasble it from the BIOS. Even if the service is "disabled", it auto restarts on its own!
DELL-Daniel V
Community Manager
•
519 Posts
•
2.7K Points
0
May 12th, 2026 15:45
@degasus Could you share your script details so that other users can have a frame of reference?
(edited)
TracyleeD
1 Rookie
•
6 Posts
•
32 Points
1
May 12th, 2026 16:38
@DELL-Daniel V We have on-prem MECM and most of our users connect to our internal network over a VPN. I created a script that will uninstall the software regardless of the version.
MECM Deployment:
Steps:
powershell.exe -ExecutionPolicy Bypass -NoProfile -WindowStyle Hidden -Command "$p=@('HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*','HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*'); Get-ItemProperty $p -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName -match 'SupportAssist Remediation' } | ForEach-Object { if ($_.UninstallString -match 'MsiExec') { Start-Process msiexec.exe -ArgumentList '/x', $_.PSChildName, '/qn', '/norestart' -Wait -NoNewWindow } elseif ($_.UninstallString -match '\"(.*?)\"') { if (Test-Path $matches[1]) { Start-Process -FilePath $matches[1] -ArgumentList '/uninstall /quiet /norestart' -Wait -NoNewWindow } } }"
This script will work regardless of the version of the Dell SupportAssist Remediation installed.
MartinHBS2026
1 Rookie
•
3 Posts
•
18 Points
0
May 12th, 2026 17:41
kudos should go to @Sygent who first posted about the issue and also found the workaround to either disable the SA Remediation service or uninstall it completely. thanks much
Bug80
1 Rookie
•
13 Posts
•
14 Points
0
May 12th, 2026 20:21
@Sygent Yeah, the thing is though that this is the second time SupportAssist causes major issues for me (on my previous laptop, it somehow caused HUGE latency spikes making it impossible to work with audio-related software so I was forced to remove it back then as well). For the time being I am going to rely on Windows Update + manually updating drivers / firmware (regularly checking the Dell repo).
Tesla1856
10 Wizard
•
17.9K Posts
•
71.3K Points
0
May 12th, 2026 21:39
@Bug80 ,
1. Correct.
I've been volunteering my time here for over 15 years. Seems like a few times now some deal-breaker thing pops-up with Support-Assist (as they change it architecturally). There are other Dell Processes and Services (like Fusion) that can cause issues as well.
But actually crashing Windows-11 is a big deal. I have 5 Windows-11 computers here (all a few years old, desktop and laptops). I can't say that I've ever seen any of them crash on Windows-11 (as bullet-proof as it is).
2. Smart. Not sure why people think you need all these Dell programs to run: Windows-11, programs, and games.
(edited)