| Previous | Next |
| MQ_ERROR_MESSAGE_LOCKED_UNDER_TRANSACTION | ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM |
ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS
ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS (0xC02605E8) means the graphics operation was attempted while Windows was switching the current session type, for example during a Remote Desktop transition or console disconnect. Display state and desktop access are transient during that change.
What to check
- Wait for the session transition to finish, then reacquire the graphics or display handles instead of reusing state captured before the transition.
- For an application, distinguish a temporary session transition from a permanent device failure and retry only after the desktop is stable.
- For a recurring end-user failure, correlate the timestamp with Remote Desktop connect/disconnect and display-driver events.
Useful command
Get-WinEvent -LogName System -MaxEvents 200 | Where-Object { $_.ProviderName -match 'Display|TerminalServices|dxgkrnl' }
Microsoft: Direct3D presentation status values
Microsoft: Display/Graphics overview
Microsoft: Graphics error codes
Looking for a different code? Search another status or error code.