4 - Windows Services Flashcards

1
Q

Windows Services do not depend on a User.
[True / False]

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe some of the OS features Windows Services are intended to provide.

Hint: List of 6

A
  1. DHCP
  2. DNS
  3. FTP
  4. Telnet
  5. Web hosting
  6. Email
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The more services running on a system, the more possible entry points there may be.

[True / False]

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

From a configuration perspective, name the 3 things Windows Services consist of.

Hint: List of 3.

A
  1. Service Applications
  2. Service Control Programs (SCPs)
  3. Service Control Manager (SCM)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Describe Service Applications.

A
  • 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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Describe Service Control Programs.

A
  • 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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe Service Control Manager (SCM).

A

The SCM manages Windows services and is therefore responsible for starting, stopping, and interacting with all system services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Windows services are a special type of application that is configured to launch and run in the background.

[True / False]

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Windows Services can be configured to run as the local system account.

[True / False]

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A Service requires an Administrator account.

[True / False]

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Where can you manage the services running on your computer?

A

The Service panel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Name the two steps required to open the Services panel.

A
  1. Click the windows key + R on your keyboard
  2. Type in “services.msc”
  3. The Services panel will then show you a list of everything running
  4. From there, you can either right click on any service running to start, stop, or pause it, or use the toolbar buttons.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

While in the Services panel, double clicking on a service will do what?

A

Double clicking on a service will provide more options for how to change the service.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In the Services panel, what information does the General tab provide?

A

In the General tab, you can -

  1. See the description of the Service
  2. Choose how it starts up
  3. Change the Service from automatically starting when the computer boots up (default) to other options
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the most common SCP?

A

services.msc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

In the Services panel, what does the Recovery tab allow you to do?

A

The Recovery tab allows you to choose options for what happens when the service fails.

17
Q

What is the default option for a Service failure?

Hint: Found under the Recovery tab

A

Restart the Service

18
Q

In the Services panel, what does the Dependencies tab show?

A

The dependencies tab shows which services depend on a particular service, and which services depend on the one you are looking at.