The answer is that you have to delete the drivers. First, you have to look for them with this command in CMD as ADMIN:
pnputil /enum-drivers > drivers.txt
Check the generated text (it will be generated wherever you are positioned in the command line when you execute the command and search for "Provider: MS" which is EXTREMELY suspicious. in my case the .inf files were these:
-
oem57.inf→ indirectdisplaybus.inf- Provider: MS
- Class: System devices
- This is the Indirect Display Bus driver that spawns the
ms_idd_bus_01virtual hardware.
-
oem56.inf→ msusbdisplay.inf- Provider: MS
- Class: MSDisplay
- This is the Microsoft USB Display driver, often bundled with USB‑to‑HDMI adapters. It can also leave behind virtual display entries.
Now start your PC in safe boot mode and run this replacing the names of the .inf files that were generated on your PC:
pnputil /delete-driver oem57.inf /uninstall /force
pnputil /delete-driver oem56.inf /uninstall /force
Deactivate Safe Boot, restart and you are done.