Skip to main content
Participant
September 14, 2026

Photoshop crashes on PC wake

  • September 14, 2026
  • 4 replies
  • 46 views

Photoshop crashes on resume from sleep when network connectivity is enabled

Summary

Photoshop consistently/regularly crashes when Windows 11 resumes from sleep, but only when network connectivity is enabled.

The crash occurs even before logging back into Windows in some cases. Photoshop is otherwise stable during normal use and does not crash during ordinary network activity.

I have traced a crash dump with WinDbg. The crash is a C++ exception originating in Photoshop's bundled msvcp140.dll, and the call stack shows Photoshop interacting with the Windows Network List Manager (netprofm) through COM/RPC during a network connectivity-change notification.

This strongly suggests a Photoshop bug in handling Windows network interface/connectivity notifications during or immediately after resume.

Reproduction

  1. Start Windows 11 normally with Photoshop running.
  2. Put the PC to sleep.
  3. Wake the PC.
  4. Photoshop crashes during/after the network interfaces transition back to their connected state.

The behaviour is strongly dependent on network connectivity:

  • Both network adapters disabled: Photoshop does not crash on resume.
  • Either network adapter enabled: Photoshop crashes on resume.
  • This occurs with either Ethernet or Wi-Fi.
  • Initially Wi-Fi appeared not to reproduce the problem, but this was because it was not actually connected. After entering the correct router password and establishing a real Wi-Fi connection, the crash returned.
  • The crash can occur while Windows is still at the lock screen, before the user logs in.

I also tested blocking Photoshop.exe outbound traffic in Windows Defender Firewall. The crash still occurred. This indicates that actual network traffic from Photoshop is not required; the relevant trigger appears to be the Windows network/interface state notification itself.

Crash details

Photoshop:

27.10.0.26

Windows:

10.0.26200.x

Faulting module:

KERNELBASE.dll

Exception:

0xe06d7363

Example Event 1000:

Faulting application name: Photoshop.exe, version: 27.10.0.26
Faulting module name: KERNELBASE.dll, version: 10.0.26100.9444
Exception code: 0xe06d7363
Fault offset: 0x00000000000c41ca

0xe06d7363 is the MSVC C++ exception code.

WinDbg analysis

A full user-mode dump was captured using Windows Error Reporting LocalDumps.

The relevant exception stack is:

KERNELBASE!RaiseException
VCRUNTIME140!_CxxThrowException
msvcp140!std::_Throw_Cpp_error+0x46
Photoshop
Photoshop
Photoshop
...
rpcrt4!Invoke
rpcrt4!NdrStubCall2
combase!CStdStubBuffer_Invoke
...
netprofm!PublicNetworkListManager::GetConnectivity
Photoshop
...
netprofm!PublicNetworkListManager::GetNetworkConnections
netprofm!PublicNetworkListManager::GetNetworkConnectionFromInterfaceId
netprofm!PublicNetworkListManager::PrivateNetworkEventSync::FireNetworkConnectionConnectivityChangedEvent
netprofm!PublicNetworkListManager::PrivateNetworkEventSync::OnInterfacePropertyChange

The important point is that the exception originates in:

msvcp140!std::_Throw_Cpp_error

and msvcp140.dll is the copy bundled with Photoshop:

C:\Program Files\Adobe\Adobe Photoshop 2026\msvcp140.dll

Version:

14.42.34438.0

Disassembly of _Throw_Cpp_error shows that it is being called with argument 2. I decoded the corresponding internal MSVC STL error-table entry and it maps to the message:

"no such process"

The exception is therefore a std::system_error being explicitly thrown by the MSVC C++ runtime. The text "no such process" should not necessarily be interpreted literally as a process-launch failure; it is the message associated with the STL error-table entry selected by _Throw_Cpp_error(2).

Network List Manager evidence

The Windows netprofm!PublicNetworkListManager::GetConnectivity function was also disassembled.

It obtains the private Network List Manager interface and invokes an internal COM/vtable method to obtain the current network state, then converts that state to NLM connectivity information.

The stack shows this happening as part of:

PrivateNetworkEventSync::OnInterfacePropertyChange

FireNetworkConnectionConnectivityChangedEvent

GetNetworkConnectionFromInterfaceId

GetNetworkConnections

COM/RPC

Photoshop

GetConnectivity

There is consequently a re-entrant COM/RPC path between Windows Network List Manager and Photoshop at the point where Photoshop eventually throws the C++ exception.

Other troubleshooting

I initially suspected the GPU because disabling GPU compositing affected the frequency/behaviour, but the crash continued with GPU compositing disabled.

I also tested:

  • Photoshop 26.11.6
  • Photoshop 27.9.1.1
  • Photoshop 27.10.0.26
  • GPU compositing disabled
  • OpenCL disabled
  • Different display configurations
  • NIC power-management settings
  • Creative Cloud desktop application disabled
  • Photoshop network traffic blocked by Windows Firewall

The crash has persisted across Photoshop versions and the GPU/OpenCL configuration changes.

The decisive test was disabling both network adapters: with networking disabled, Photoshop stops crashing on resume.

Hardware

  • Intel Core i5-13600K
  • 64 GB RAM
  • NVIDIA RTX 3090
  • Intel UHD 770 integrated graphics
  • Three displays:
    • 3840×2160 144 Hz 10-bit display connected to RTX 3090
    • Two 2560×1600 120 Hz displays connected to Intel UHD 770

Current NVIDIA Studio driver is a recent 2026 driver. The problem has also occurred with an earlier NVIDIA driver, so I do not currently consider the NVIDIA driver the primary cause.

Current workaround

The only reliable workaround identified so far is to disable the network adapters before sleep, which is obviously impractical as a permanent solution.

Suspected cause

Based on both behavioural testing and the crash dump, my current suspicion is:

Photoshop is mishandling a Windows Network List Manager connectivity/interface-change notification generated during or immediately after system resume. A COM/RPC callback enters Photoshop, Photoshop queries Network List Manager connectivity again, and an internal Photoshop operation eventually calls std::_Throw_Cpp_error(2). The resulting std::system_error is not handled and terminates Photoshop.

The fact that disabling network adapters prevents the crash, while blocking Photoshop's network traffic does not, makes the Windows network-state notification path a much stronger candidate than ordinary network communication.

Please could this be investigated specifically as a Photoshop/Windows Network List Manager (netprofm) interaction during system resume/network interface state changes?

I can provide the full WinDbg crash dump and the complete Event Viewer/Reliability Monitor information if required.

    4 replies

    Participant
    September 14, 2026

    If I close Photoshop, where do I disable the two options you mention? Auto show the Home Screen is in Photoshop’s Preferences > General. There is no option to Automatically check for updates; I can only turn off Auto-update for Photoshop in the Creative Cloud app. 

    I’d rather not turn off “Allow this device [the NIC] to wake the computer”, as this would disable WoL, though could consider it as a short-term workaround. 

    I can turn off WiFi (I’m on Ethernet), though my tests show it makes no difference if either or both adapters are active.

    I can’t see an option to Report a Bug within the Help menu in Photoshop 2026.

    Participant
    September 14, 2026

    In a reproduced crash, Windows NetworkProfile Event 4004 reported NetworkConnectivityLevelChanged=true at 17:32:57.513 UTC, approximately 0.5–1 second before the Photoshop crash at approximately 17:32:58. The event belongs to the same ActivityID as the preceding network interface/profile changes. The crash dump simultaneously shows Photoshop being called from netprofm!PrivateNetworkEventSync::FireNetworkConnectionConnectivityChangedEvent and subsequently throwing std::_Throw_Cpp_error(2).

    Claire H.
    Community Manager
    Community Manager
    September 14, 2026

    Hi ​@Matthew262989003x3o, Thank you for this exceptionally thorough report! This is related to a bug we're tracking. Please try the following steps.

     

    1. Disable Photoshop's network reachability check at startup

      • Close Photoshop

      • Disable "Automatically check for updates" and "Home Screen on launch" in Preferences → General

      • This may reduce the frequency since Win32ReachabilityImpl::PerformConnect is triggered during initialization and CC-related features

    2. Disable Creative Cloud background processes

      • Please confirm you have disabled CCLibrary, CCXProcess, and Adobe Background Task Host via Task Manager → Startup

      • These can trigger network reachability checks independently

    3. Set network adapters to not wake the computer

      • Device Manager → Network adapter → Properties → Power Management

      • Uncheck "Allow this device to wake the computer"

      • This won't prevent the crash on manual wake, but may reduce cases where the NIC wakes the PC and fires connectivity events before Windows is fully resumed

    4. Try turning off only one adapter

      • Does disabling just the unused adapter help? Having two NICs transitioning simultaneously may worsen the race condition

     

    Current status: The fix has been assigned to engineering, but is not yet resolved. There is no reliable workaround beyond disabling network adapters before sleep, as you discovered.

    If you're willing to share the full WinDbg crash dump, that would be helpful. It can be attached here or submitted via Help → Report a Bug inside Photoshop.

    Thanks again for the thorough report! ^CH

    Participant
    September 14, 2026

    If I close Photoshop, where do I disable the two options you mention? Auto show the Home Screen is in Photoshop’s Preferences > General. There is no option to Automatically check for updates; I can only turn off Auto-update for Photoshop in the Creative Cloud app. 

    I’d rather not turn off Allow this device [the NIC] to wake the computer, as this would disable WoL, though could consider it as a short-term workaround. 

    I can turn off WiFi (I’m on Ethernet), though my tests show it makes no difference if either or both adapters are active.

    I can’t see an option to Report a Bug within the Help menu in Photoshop 2026.