0X00262307

0x00262307: No pinned mode on VidPN source or target

Windows Errors Intermediate 👁 8 views 📅 Jun 19, 2026

This error hits when Windows can't lock a display mode to a video output. It often pops up with multi-monitor setups or after a driver update. The fix is usually a driver rollback or a clean reinstall.

You're working on a multi-monitor setup, maybe plugging in a third screen for a client's POS system, and bam — the display flickers, or one monitor just shows a black screen. Check Event Viewer, and there it is: ERROR_GRAPHICS_MODE_NOT_PINNED (0x00262307). I saw this last month on a Dell OptiPlex running Windows 10 22H2. The machine had two monitors working fine, then the user added a third — and that third output refused to play nice. Same thing can happen after a graphics driver update from Windows Update.

Root cause in plain English

Your graphics card talks to each monitor through something called a VidPN (Video Present Network). Think of it like a phone line between the GPU and the screen. Windows needs to pin a specific mode — resolution and refresh rate — to that line. If it can't pin one, the line stays dead. This usually happens because the driver is confused about what modes the monitor supports. Maybe the driver is corrupted, or a new driver doesn't handle that exact monitor EDID data correctly. Old clients: cheap HDMI-to-VGA adapters are notorious for this.

The fix: step by step

Step 1: Roll back the graphics driver

If the error started after a driver update, roll it back. Right-click Start > Device Manager > Display adapters. Right-click your GPU > Properties > Driver tab > Roll Back Driver. If it's grayed out, skip to Step 2.

Step 2: Clean uninstall with DDU

DDU (Display Driver Uninstaller) is the real fix here. Regular uninstall leaves junk. DDU wipes it clean.

  1. Download DDU from its official site. Boot into Safe Mode.
  2. Run DDU, select your GPU vendor (NVIDIA, AMD, or Intel), and hit "Clean and restart".
  3. After reboot, Windows will install a basic driver. Don't let it. Disconnect internet if needed.
  4. Download the latest driver from your GPU maker's site (not Windows Update). Install it fresh.

Step 3: Manually set the mode

Sometimes the driver can't auto-detect the right mode. Force it.

  1. Right-click desktop > Display settings > Advanced display.
  2. Select the problem monitor.
  3. Under "Refresh rate", pick a lower value (e.g., 60Hz instead of 144Hz).
  4. Under "Display resolution", pick a standard resolution like 1920x1080.

Step 4: Check the cable and adapter

Had a client last month whose entire print queue died because of a faulty USB-C adapter. Same principle here. Swap cables. Try a different port. If using an adapter, test without it. Cheap adapters mess with EDID data and confuse the driver.

Step 5: Registry edit (advanced)

If the above fails, you can force a mode via registry. Be careful.

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers\DisplayConfiguration\

Find the key for your monitor (it'll have a long hex name). Look for ModeSet or PinnedMode DWORD. If missing, create it with value 0. Reboot. This tells Windows to not try to pin a mode automatically — often a workaround for stubborn adapters.

What to check if it still fails

  • Try a different monitor: connect a known-working screen to the same port. If that works, the original monitor has bad EDID data.
  • Update BIOS: some Dell and HP systems need a BIOS update to handle newer GPUs or multi-monitor setups properly.
  • Check for hardware limit: older GPUs (like Intel HD 4600) can only drive two displays. Adding a third triggers this error. A cheap USB display adapter can help.

If nothing works, you're likely looking at hardware — bad GPU port or a monitor that doesn't play nice with the driver. In that case, swap the affected monitor to a different graphics output type (e.g., USB-C to HDMI instead of VGA). That's saved me three times this year alone.

Was this solution helpful?