From 3fca568818c3bee97638ae3d2452ae234a50431e Mon Sep 17 00:00:00 2001 From: Blue Date: Thu, 19 Sep 2024 11:28:32 -0700 Subject: [PATCH] Dump dllhost.exe in collect-wsl-logs.ps1 (#12056) --- diagnostics/collect-wsl-logs.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diagnostics/collect-wsl-logs.ps1 b/diagnostics/collect-wsl-logs.ps1 index a7adc54d..60e9a0bb 100644 --- a/diagnostics/collect-wsl-logs.ps1 +++ b/diagnostics/collect-wsl-logs.ps1 @@ -127,7 +127,7 @@ if ($Dump) $dumpFolder = Join-Path (Resolve-Path "$folder") dumps New-Item -ItemType "directory" -Path "$dumpFolder" - $executables = "wsl", "wslservice", "wslhost", "msrdc" + $executables = "wsl", "wslservice", "wslhost", "msrdc", "dllhost" foreach($process in Get-Process | Where-Object { $executables -contains $_.ProcessName}) { $dumpFile = "$dumpFolder/$($process.ProcessName).$($process.Id).dmp"