0XC01E035C

Fix 0xC01E035C: Graphics client VidPN not set on Win10/11

Windows Errors Intermediate 👁 0 views 📅 May 28, 2026

This error pops up when Windows can't assign a display mode to your monitor. Usually after unplugging a cable, waking from sleep, or switching inputs.

When does this error show up?

You'll see 0xC01E035C in the Event Viewer under System logs, or you might get a black screen with a cursor after your PC wakes from sleep. This happens a lot on Dell XPS 13 and 15 models (2020-2023) running Windows 10 22H2 or Windows 11 23H2. Another common trigger: you unplug your laptop from a USB-C dock (like a Dell WD19) and the external monitor stays black until you reboot. The error text reads "STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET" and it means the graphics driver lost its connection to the display's video signal path.

What's actually wrong?

The Windows Display Driver Model (WDDM) uses something called a VidPN — Video Present Network. Think of it as a map between your GPU and your monitor. When you change cables, wake the machine, or the driver crashes briefly, Windows tries to rebuild that map. If it fails, you get this error. The root cause is almost always a driver that didn't reinitialize the display pipeline after a hotplug or power state transition. Bad cables can also do it — but 9 times out of 10, it's the driver timing out.

Fix it — step by step

Step 1: Force a driver reset without rebooting

  1. Press Win + Ctrl + Shift + B at the same time.
  2. You'll hear a beep and the screen might flicker once.
  3. Check if your monitor comes back. If it does, you're done. This keyboard shortcut tells the graphics driver to restart itself.

If the screen stays black, move to Step 2. Don't skip this — it works about 30% of the time on the first try.

Step 2: Restart the graphics driver via Device Manager

  1. Press Win + X and select Device Manager.
  2. Expand Display adapters.
  3. Right-click your GPU (usually Intel UHD Graphics, NVIDIA GeForce, or AMD Radeon).
  4. Select Disable device. Your screen will go black or flicker for a second.
  5. Wait 5 seconds, then right-click the same device and select Enable device.

After enabling, the screen should come back. If you get a warning about "you need to restart your computer" — ignore it. Just enable the device anyway and it should work. This forces Windows to rebuild the VidPN from scratch.

Step 3: Clear the driver cache in safe mode

If Steps 1-2 didn't fix it, the driver cache might be corrupted. This is the real fix for persistent cases.

  1. Hold Shift and click Restart from the Start menu.
  2. When the blue screen appears, click Troubleshoot > Advanced options > Startup Settings > Restart.
  3. After reboot, press 4 or F4 for Safe Mode.
  4. Once in Safe Mode, press Win + R, type devmgmt.msc, and hit Enter.
  5. Expand Display adapters, right-click your GPU, and choose Uninstall device.
  6. Check the box Delete the driver software for this device and click Uninstall.
  7. Restart the PC normally. Windows will reinstall a generic driver on reboot.

After reboot, your display should work at a basic resolution. Then you can download the latest driver from your GPU manufacturer's website. Don't rely on Windows Update — it often installs stale versions. Grab the Intel DCH driver or NVIDIA Game Ready driver directly.

Step 4: Disable fast startup (it causes this)

Fast Startup is Microsoft's hybrid shutdown. It leaves the GPU state partially saved, which messes with VidPN reinitialization on wake. Turn it off.

  1. Open Control Panel > Power Options.
  2. Click Choose what the power buttons do on the left.
  3. Click Change settings that are currently unavailable.
  4. Uncheck Turn on fast startup (recommended).
  5. Click Save changes and restart.

This single change prevents the error from coming back after sleep. I've seen this fix it on Lenovo ThinkPad X1 Carbons and HP EliteBooks that had the error weekly.

Still stuck? Check these three things

  • Cable and port: Try a different DisplayPort cable or HDMI cable. USB-C to DisplayPort adapters are notorious for causing VidPN errors. Use a direct cable if you can.
  • Monitor firmware: Some Dell and LG monitors (especially the UltraSharp and 27GN series) have firmware bugs that drop the VidPN. Check the monitor manufacturer's support page for a firmware update.
  • BIOS setting: On HP and Lenovo laptops, go into BIOS and look for Graphics Configuration or Video Memory. Set it to Auto or Fixed (not Dynamic). Save and exit.

If you've done all this and the error still appears, try a clean install of Windows 11 23H2 using the Media Creation Tool. That last resort works because it resets the entire WDDM stack. But I'd bet the driver cache cleanup in Step 3 will get you there first.

Was this solution helpful?