blog:odborny:2017-10-10-how_to_fix_missing_null_driver_in_windows_fundamentals
How to Fix Missing NULL Driver in Windows Fundamentals
Windows Fundamentals, or WinFLP, is a tiny old system well‑usable on old machines. However, it is lacking NULL driver, which will probably cause many command‑line installers to fail. This is how to fix it quickly.
Adding NULL driver to Windows
This is a re‑phrased, polished and updated walkthrough from original source here.
- Download null.sys driver and required registry settings from here.
- Copy
null.sys
toc:\windows\system32\drivers\null.sys
. - Run
regedit
and go toHKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\Root
. - Right‑click on the
Root
folder, choosePermissions…
and add theAdministrator
user with full control. - Right‑click on the
Root
folder again and create a new key under it calledLEGACY_NULL
. - Run
null.reg
unpacked from downloaded zip file. - Reboot.
- Go to
Device Manager
, selectView → Show hidden devices
and findNull
underNon‑Plug and Play Drivers
. - Under
Driver
tab, changeCurrent status
toStarted
and selectBoot
as aStartup type
. - Done!
Checking if NULL driver is present and working
- Open
cmd
. - Write
echo >nul
. - If no error is displayed, NULL driver is working well, otherwise you will see
The system cannot find the file specified.
error.
Comments
blog/odborny/2017-10-10-how_to_fix_missing_null_driver_in_windows_fundamentals.txt · Posledná úprava: 2019/10/08 23:03 od Róbert Toth