4 - Windows Services Flashcards
Windows Services do not depend on a User.
[True / False]
True
Describe some of the OS features Windows Services are intended to provide.
Hint: List of 6
- DHCP
- DNS
- FTP
- Telnet
- Web hosting
The more services running on a system, the more possible entry points there may be.
[True / False]
True
From a configuration perspective, name the 3 things Windows Services consist of.
Hint: List of 3.
- Service Applications
- Service Control Programs (SCPs)
- Service Control Manager (SCM)
Describe Service Applications.
- The services themselves.
- They may be executables or DLLs, as long as they contain code allowing the SCM to interact with them.
- Most Windows services are DLLs that require a shared process to run. Svchost.exe processes are generic hosts for DLL services.
- The HKLM\Software\Microsoft\Windows NT\CurrentVersion\SvcHost Registry key identifies each svchost.exe process and the services it hosts.
Describe Service Control Programs.
- GUI, command line or PS programs used to communicate desired service configuration changes to the SCM.
- SCPs allow users to view service properties as well as start, stop, and/or configure services.
- The most common SCP is the services.msc GUI.
Describe Service Control Manager (SCM).
The SCM manages Windows services and is therefore responsible for starting, stopping, and interacting with all system services.
Windows services are a special type of application that is configured to launch and run in the background.
[True / False]
True
Windows Services can be configured to run as the local system account.
[True / False]
True
A Service requires an Administrator account.
[True / False]
True
Note: Unlike regular applications, which can be simply launched and run under your user account, a service must be installed and registered with Windows, which requires an administrator account.
Where can you manage the services running on your computer?
The Service panel
Name the two steps required to open the Services panel.
- Click the windows key + R on your keyboard
- Type in “services.msc”
- The Services panel will then show you a list of everything running
- From there, you can either right click on any service running to start, stop, or pause it, or use the toolbar buttons.
While in the Services panel, double clicking on a service will do what?
Double clicking on a service will provide more options for how to change the service.
In the Services panel, what information does the General tab provide?
In the General tab, you can -
- See the description of the Service
- Choose how it starts up
- Change the Service from automatically starting when the computer boots up (default) to other options
What is the most common SCP?
services.msc