Windows – How to start Windows system drivers on the fly

driverswindows

A list of windows' system drivers are listed in msinfo32 under Software Environment. Like the Windows services list (run services.msc), it shows which drivers are started and their start mode (boot, manual or system).

enter image description hereclick to enlarge

Does anyone know how one can start a system driver that is set to manual without changing it to start every time you boot your system?

Probably isn't relevant, but I am on Windows 7 Home Premium (64bit) and the driver I would like to start is the NetGroup Packet Filter Driver (NPF) that is used by WinPCap.

Best Answer

You can probably start it from an admin command prompt - net start xxx or sc start xxx, where xxx is the service name. You can get the service name from the msinfo32. Not guaranteed to work if there are dependencies.

Related Question