If it’s essential export a tool driver for set up on a special pc, use the steps on this information to export the motive force utilizing the pnputil command.
Step 1: Get the Gadget’s Driver Title
On this instance, I will probably be exporting the motive force for the “802.11n USB Wi-fi LAN Card.”
Run the command beneath to record all units on the PC.
Since my driver is within the “Internet” (community) class, I’ll filter my command by the “Internet” class. I did this to cut back the variety of objects returned by the command.
pnputil /enum-devices /class "Internet"
The command returns a protracted record of things. Find the identify of the motive force you’re exporting and word its show identify. In my screenshot, the identify of my driver is netr28ux.inf.
Step 2: Export the Gadget’s Driver
- Create a folder to save lots of the system’s driver information. Then, cd to the listing.
I’m saving my exported driver information to “D:Drivers802.11n USB Wi-fi LAN Card.”
cd "D:Drivers802.11n USB Wi-fi LAN Card"
- Lastly, export the motive force with this command
pnputil /export-driver netr28ux.inf .
The interval “.” on the finish of the command instructs the pnputil command to save lots of the information within the present listing. That is why we needed to change the listing to the folder we have to save the motive force information.
The command exports the information and returns a message about what number of information are exported. I’ve included the output of my command and the information exported within the folder in my screenshot beneath.
To set up the motive force with the pnputil command, use the INF file. I highlighted the INF in my exported driver folder above.
Conclusion
For those who handle a Home windows Server Core, you have to discover ways to set up drivers with the pnputil command. Nevertheless, as a substitute of downloading the motive force, if in case you have the motive force on one other server, you may export it as I’ve demonstrated on this easy information.
I hope I made your day with this information. Let me know your ideas by responding to our “Was this web page useful?” suggestions request type beneath.