Understand Windows Services 98-361 Software Development Fundamentals LESSON 5.3.

Slides:



Advertisements
Similar presentations
An Overview Of Virtual Machine Architectures Ross Rosemark.
Advertisements

Chapter 11: The X Window System Guide To UNIX Using Linux Third Edition.
Ch-11 Project Execution and Termination. System Testing This involves two different phases with two different outputs First phase is system test planning.
Programming Basic Concepts © Juhani Välimäki 2003.
11 CONFIGURING AND MANAGING SHARED FOLDER SECURITY Chapter 8.
Interpret Application Specifications
Slide 1 ICS 012 Visual Programming I Ahmed Esmat Second.
Maintaining and Updating Windows Server 2008
Module 2: Planning to Install SQL Server. Overview Hardware Installation Considerations SQL Server 2000 Editions Software Installation Considerations.
Guide to MCSE , Enhanced 1 Activity 9-1: Creating a Group Policy Object Using the MMC Objective: To create a GPO using the Group Policy Object Editor.
Hands-On Microsoft Windows Server 2008 Chapter 11 Server and Network Monitoring.
CH 13 Server and Network Monitoring. Hands-On Microsoft Windows Server Objectives Understand the importance of server monitoring Monitor server.
Printing Terminology. Requirements for Network Printing At least one computer to operate as the print server Sufficient RAM to process documents Sufficient.
Windows Server 2008 Chapter 11 Last Update
© 2004 Cisco Systems, Inc. All rights reserved. Managing Your Network Environment Managing Router Startup and Configuration INTRO v2.0—9-1.
Chien-Chung Shen Manifest and Activity Chien-Chung Shen
In-Line Cell Manager Configuration and Loading Date: Octobre2014.
Install NetBeans with PHP ISYS 475. Install NetBeans (If you want install Java) First download and install Java JDK: –
WINDOWS SERVICES. Introduction You often need programs that run continuously in the background Examples: – servers –Print spooler You often need.
HTML5 Application Development Fundamentals
Microsoft ® Official Course Module 10 Optimizing and Maintaining Windows ® 8 Client Computers.
Four Components of a Computer System. Computer System Components Users (people, machines, other computers) Applications programs – define the ways in.
A+ Guide to Managing and Maintaining Your PC Fifth Edition Chapter 14 Managing and Troubleshooting Windows 2000.
Capstone Project Vista Game Logs Sponsor: Jerald Block John Van Drasek Tony Kautz Priya Pitla Desiree Mijares Ryan Hieber.
By Rashid Khan Lesson 10-From Here to There: Remote Installation of the Windows XP Professional Client.
A+ Guide to Managing and Maintaining Your PC Fifth Edition Chapter 13 Understanding and Installing Windows 2000 and Windows NT.
CIS3023: Programming Fundamentals for CIS Majors II Summer 2010 Ganesh Viswanathan Introduction to Applets Course Lecture Slides 29 th July 2010.
Introduction to network management. INTRODUCTION ● Course Overview ● Course Objectives.
An Introduction to Visual Basic.NET. What is.NET.Net is a new framework for developing windows-based and web-based applications within the Microsoft environment.
Lesson 1-Logging On to the System. Overview Importance of UNIX/Linux. Logging on to the system.
Linux Kernel Management. Module 9 – Kernel Administration ♦ Overview The innermost layer of Linux operating system is the kernel, which is a thin layer.
CH 13 Server and Network Monitoring. Hands-On Microsoft Windows Server Objectives Understand the importance of server monitoring Monitor server.
Guide to MCSE , Enhanced1 Activity 11-1: Using Task Manager to Manage Applications and Processes Objective: To explore managing applications and.
1 Applets are small applications that are accessed on an Internet server, transported over the internet, automatically installed and run as a part of web.
Getting Started with SIDL using the ANL SIDL Environment (ASE) ANL SIDL Team MCS Division, ANL April 2003 The ANL SIDL compilers are based on the Scientific.
Module 4: Creating a Web Application with Web Forms
Module 10: Windows Firewall and Caching Fundamentals.
General Computer Knowledge COE 201- Computer Proficiency.
1 3 Computing System Fundamentals 3.3 Computer Systems.
Understanding Desktop Applications Lesson 5. Objective Domain Matrix Skills/ConceptsMTA Exam Objectives Understanding Windows Forms Applications Understand.
MTA EXAM Software Testing Fundamentals : OBJECTIVE 6 Automate Software Testing.
Install a Windows Service Application Windows Development Fundamentals LESSON 3.2.
Institute for the Protection and Security of the Citizen HAZAS – Hazard Assessment ECCAIRS Technical Course Provided by the Joint Research Centre - Ispra.
Understanding Desktop Applications Lesson 5. Understanding Windows Forms Applications Windows Forms applications are smart client applications consisting.
Overview of Windows Driver Development Reference: us/gstart/hh/gstart/gs_intro_031j.asp.
Capstone Project Vista Game Logs Sponsor: Jerald Block John Van Drasek Tony Kautz Priya Pitla Desiree Mijares Ryan Hieber.
Active X and Signed Applets Chad Bollard. Overview ActiveX  Security Features  Hidden Problems Signed Applets  Security Features  Security Problems.
Introduction to Programming 1 1 2Introduction to Java.
4 Copyright © 2004, Oracle. All rights reserved. Advanced Interface Methods.
Maintaining and Updating Windows Server 2008 Lesson 8.
Functions of Operating Systems V1.0 (22/10/2005).
9 Copyright © 2004, Oracle. All rights reserved. Getting Started with Oracle Migration Workbench.
Chapter 4. CONCEPT OF THE OPERATING SYSTEM MANAGING ESSENTIAL FILE OPERATIONS.
Chapter 13 FTP and Telnet Cisco Learning Institute Network+ Fundamentals and Certification Copyright ©2005 by Pearson Education, Inc. Upper Saddle River,
Lesson 9: SOFTWARE ICT Fundamentals 2nd Semester SY
Useful Tools for Testing
Hands-On Microsoft Windows Server 2008
CSC 480 Software Engineering
Senior Software Engineering Student Robertas Sys
Understand Windows Forms Applications and Console-based Applications
Printers.
Module 0: Introduction Chapter 2: Getting Started
Module 1: Getting Started
Module 10: Creating a Web Application with Web Forms
Code Analysis, Repository and Modelling for e-Neuroscience
Manage Security Settings with Group Policy
Deploy Software with Group Policy
Applet Fundamentals Applet are small applications that are accessed on an Internet server, transported over the Internet, automatically installed and run.
Code Analysis, Repository and Modelling for e-Neuroscience
Microsoft SQL Server 2014 for Oracle DBAs Module 1
Presentation transcript:

Understand Windows Services Software Development Fundamentals LESSON 5.3

Software Development Fundamentals LESSON 5.3 Lesson Overview Students will understand Windows ® Services. In this lesson, you will learn about:  Characteristics and capabilities of Windows Services

Software Development Fundamentals LESSON 5.3 Guiding Questions 1. What is a Windows Service? 2. What are the characteristics and capabilities of Windows Services?

Software Development Fundamentals LESSON 5.3 Review Terms  Service—a program or routine that provides support to other programs

Software Development Fundamentals LESSON 5.3 Activator  What are some processes that we might want to run constantly in the background of a computer?

Software Development Fundamentals LESSON 5.3 Windows Service  An executable that carries out specific functions and is designed not to require user involvement.  It often is configured to start alongside the operating system and run in the background.  Why use a Windows service?  When you want a program to start automatically when the operating system starts  When your program does not require user interaction, and therefore may not need a user interface (UI)  When you need long-running functionality

Software Development Fundamentals LESSON 5.3 How are Windows Services different?  The compiled executable file that a service application project creates must be installed on the system before the project can function.  You must create installation components for service applications.  The installation components install and register the service on the computer and create an entry for your service with the Windows Services Control Manager.  Windows Service applications run in their own security context and are started before the user logs into the Windows computer on which he or she is installed.

Software Development Fundamentals LESSON 5.3 Windows Service Lifetime  The service is installed on the system and loaded into the Windows Services Control Manager.  The service is started.  At this point, the service can be:  Running  Paused  Stopped  You can pause, stop, or resume a service  By using the Windows Services Control Manager  By using Server Explorer  By calling methods in code

Software Development Fundamentals LESSON 5.3 Lesson Review 1. What is a Windows Service? 2. When would you use a Windows Service? 3. How would creating a Window Service project be different than creating other applications? 4. What are the stages in the lifetime of a Windows Service?