= Windows PowerShell Pwsh ISE_copy_paste = * Copy into Windows PowerShell ISE window {{{#!highlight PowerShell # PowerShell # Check free space Get-PSDrive C # 108 GB # Create folder New-Item -ItemType Directory -Path C:\Temp\dumps -Force # Find the gw2e.exe PID $p = Get-Process gw2e $p | Select-Object Id, ProcessName, StartTime, Path # Id ProcessName StartTime Path # -- ----------- --------- ---- # 7748 gw2e 5/24/2026 1:04:04 AM D:\gw2eType_App\gw2ePkg.Code.2026.04.26.1-NA-full-1\gw2e.exe # Capture full dump $ts = Get-Date -Format yyyyMMdd_HHmmss procdump64.exe -accepteula -ma $p.Id C:\Temp\dumps\gw2e_$($env:COMPUTERNAME)_$($p.Id)_$ts.dmp # or - no procdump use rundll32 + comsvcs.dll rundll32.exe C:\Windows\System32\comsvcs.dll, MiniDump $($p.Id) C:\Temp\dumps\gw2e_$($env:COMPUTERNAME)_$($p.Id)_$ts.dmp full # Validate the dump file Get-ChildItem C:\Temp\dumps\gw2e_*.dmp | Select-Object Name, Length, LastWriteTime Get-ChildItem C:\Users\APP\AppData\Local\Temp\2\gw2e.DMP | Select-Object Name, Length, LastWriteTime }}}