usualjuptier
New member
- Local time
- 3:12 AM
- Posts
- 4
- OS
- Windows 11
Hello,
This question may related for advanced driver installation and management.
How to install driver to offline windows? Real install (Include Device interface, Classes, etc)
I made a research for it and I found 3 tools
1. DSIM
DSIM support install to offline windows with
Windows need to run once online so PNP read device and extract it from repository and install device, and must this online computer have this device on it
2. PNPUTIL
3. DEVCON
So my target is reach what DEVCON install do but in offline windows.
Is there is something I missing can do that?
If not is build a app do what DEVCON do, move sys file to SYSTEM32 , Generate REG files from INF file for specific HARDWARE_ID to fake inject registry entries for this driver possible?
Thanks
This question may related for advanced driver installation and management.
How to install driver to offline windows? Real install (Include Device interface, Classes, etc)
I made a research for it and I found 3 tools
1. DSIM
DISM /Add-Driver
DSIM support install to offline windows with
This OP only move driver files (INF, SYS, CAB) to C:\Windows\System32\DriverStore\FileRepositorydism /Image:"C:\mount\offline" /Add-Driver /Driver:"C:\drivers\network.inf"
Windows need to run once online so PNP read device and extract it from repository and install device, and must this online computer have this device on it
2. PNPUTIL
Adds driver to the Driver Store and creates internal links. When the device is plugged in, Windows immediately builds the registry entries for the real hardware, ONLY WORK ONLINE WINDOWSpnputil /add-driver C:\Drivers\*.inf /subdirs /install
3. DEVCON
Fully Install the driver by creating the necessary registry entries, enumeration keys, and class associations, ONLY WORK ONLINE WINDOWSdevcon install network.inf "HW_ID"
So my target is reach what DEVCON install do but in offline windows.
Is there is something I missing can do that?
If not is build a app do what DEVCON do, move sys file to SYSTEM32 , Generate REG files from INF file for specific HARDWARE_ID to fake inject registry entries for this driver possible?
Thanks
My Computer
System One
-
- OS
- Windows 11
- Computer type
- PC/Desktop




