Hook
More breakout videos from this creator.
Oh nice, another reason to NOT use Windows in 2026. Turns out setting your Microsoft laptop to eco mode for too long will actually make the thing worse at gaming when you go back to performance mode. Windows gaming laptops are notoriously bad on battery life, which is why it's becoming increasingly common for manufacturers to implement an eco mode that switches your device to run off of your CPU's integrated graphics module rather than the dedicated physical card inside the machine. Which is great. It gives you a better battery life, is overall more power efficient, but since Windows is dumb and stinky, of course there's a catch. On Reddit, stumbled upon the forbidden knowledge that around 15 to 30 days of running it's possible that Windows will to just delete the drivers for your discrete card and replace them with a generic one, essentially treating the internal processor as a glorified USB drive, and replacing the files in an attempt to conserve resources. PSA: if your laptop GPU turned into "Microsoft Basic Display Adapter", Windows deleted the driver on purpose. Software Related. Took me months to work this out. Dropping a few keywords first so this actually shows up on Google for the next person: nvidia driver disappeared, showing as Microsoft Basic Display Adapter instead of RTX in device manager. GPU not showing in task manager laptop. "Application is not compatible with the installed NVIDIA drivers", code 10 this device cannot start. dGPU missing from task manager, only integrated graphics showing. nvidia driver uninstalled itself, had to reinstall nvidia driver again. GPU gone after eco mode, GPU gone after switching to standard mode. HDMI not working in standard mode. G-Helper, Armoury Crate, Optimus, MUX, hybrid graphics. TL;DR: Eco mode makes your dGPU absent. Windows deletes devices that have been absent past a timeout (15-30 days), then deletes their drivers as unused. What happened. Eco mode power-gates the dGPU off the PCIe bus. Windows treats it like a USB stick you unplugged: not present. There's a Windows maintenance job called pnp<clean.dll that removes devices absent past a timeout, then removes any driver package nothing references any more. Default timeout is 30 days. Mine had a per-device value of 15. Straight out of my C:\Windows\INF\setupapi.dev.log: set: Device PCI\VEN_10DE&DEV_2F58&SUBSYS_39A81043 set: Device PCI\VEN_10DE&DEV_2F58&SUBSYS_39A81043 set: Device PCI\VEN_10DE&DEV_2F58&SUBSYS_39A81043 set: Searching for unused drivers that may be removed. set: INF oem130.inf (nvamsi.inf_amd64_...) will be removed. set: INF oem130.inf was removed. Same pass also cleared out some old USB sticks and Bluetooth pairings. Switching back to Standard afterwards shows the GPU as a new device with no driver (it just shows as "Basic Display Adapter" and with Code 10 error). NVIDIA Control Panel says "not compatible" because there's no driver installed. How to tell if this is what happened to you. Open PowerShell and run this to search the logs: Select-String -Path C:\Windows\INF\setupapi.dev.log*. VEN_10DE is NVIDIA, VEN_1002 is AMD. If you get lines saying your GPU "was removed", that's it. Note the * in setupapi.dev.log. The live log rotates every few MB and mine only went back 5 days, but Windows keeps the old ones next to it as setupapi.dev.YYYYMMDD_HHMMSS.log going back about a year. You can also see the driver package itself getting binned: Select-String -Path C:\Windows\INF\setupapi.dev.log*. on Reddit stumbled upon the forbidden knowledge that around 15 to 30 days of running it's possible that Windows will to just delete the drivers for your discrete card and replace them with a generic one, essentially treating the internal processor as a glorified USB drive, and replacing the files in an attempt to conserve resources.