Microsoft KB Archive/101501

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 16:02, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


Differences Between a Service and a Device Driver

Article ID: 101501

Article Last Modified on 2/20/2007



APPLIES TO

  • Microsoft Windows 2000 Server
  • Microsoft Windows 2000 Advanced Server
  • Microsoft Windows 2000 Professional Edition
  • Microsoft Windows NT Advanced Server 3.1
  • Microsoft Windows NT Workstation 3.1
  • Microsoft Windows NT Advanced Server 3.1
  • Microsoft Windows NT Server 3.5
  • Microsoft Windows NT Server 3.51
  • Microsoft Windows NT Server 4.0 Standard Edition
  • Microsoft Windows NT Workstation 3.5
  • Microsoft Windows NT Workstation 3.51
  • Microsoft Windows NT Workstation 4.0 Developer Edition



This article was previously published under Q101501


SUMMARY

In Windows NT and Windows 2000, a service and a device driver have different functions. A service is a user-mode process that implements the Service Controller Specification. A device driver is a portion of kernel-mode code that implements the Windows NT Driver Model Specification.

MORE INFORMATION

There are some similarities between services and device drivers. The Service Controller is the component of the system that controls starting, pausing, stopping, and continuing services in the system. It also starts and stops (loads and unloads) device drivers. The Service Controller provides a common user interface and application programming interface (API) for services and device drivers.

In some cases, a service is implemented as a front end for a driver. The Workstation service, for example, is implemented as a service from the perspective of the Service Controller. However, the service controls the network redirector file system driver by translating the control codes from the Service Controller into FSCTL (file system control codes) and passing them to the redirector.

Note that the Service Controller can control services and device drivers and it provides an API through which applications can perform the same tasks.

Keywords: kbinfo kbother KB101501