Crash to desktop, complete dump of SwgClient_r.exe
-
Capturing Crash Dumps for SwgClient_r.exe and Analyzing Them with WinDbg
If you're troubleshooting crashes with the SWG client, you can configure Windows to generate full crash dumps when SwgClient_r.exe crashes. These dumps can then be analyzed with WinDbg.Note: If you are not comfortable modifying the registry, do not proceed.
1. Enable Crash Dumps
Open Registry Editor
Win + R
Type: regedit
Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting
Create a new key if it does not exist:
LocalDumps
Inside LocalDumps create another key named:
SwgClient_r.exe
Your registry path should look like:
HKEY_LOCAL_MACHINE
└ SOFTWARE
└ Microsoft
└ Windows
└ Windows Error Reporting
└ LocalDumps
└ SwgClient_r.exeAdd the following values:
DumpFolder REG_EXPAND_SZ C:\CrashDumps
DumpType REG_DWORD 2
DumpCount REG_DWORD 2
Create the folder:
C:\CrashDumps
When the client crashes, dumps will appear there.
Registry Example
2. Install WinDbg
Microsoft documentation:
[URL unfurl="true"]https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools[/URL]
Install WinDbg Preview from the Microsoft Store:
[URL unfurl="true"]https://apps.microsoft.com/store/detail/windbg-preview/9PGJGD53TN86[/URL]
3. Analyze a Crash Dump
Open WinDbg → File → Open Dump File
Select the dump from: C:\CrashDumps
Then run:
!analyze -v
This will show the crash reason, stack trace, and faulting module.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login