.Net - What are windows services? How are they differ from other
.NET application? - June 03, 2009 at 11:00 AM by Shuchi Gauri
What are windows services? How are they differ from other .NET application?
Windows services are a way to create continuously running applications in the
background. They don’t interfere with other applications and can be run
whenever a machine starts. They can be paused if and when needed and quietly
run in the background without the need of any user intervention. Windows
services can be configured to run under specific user accounts. They run under
their own windows sessions and are ideal for tasks that need to be performed
periodically or for monitoring requirements. Main difference between windows
services and other .Net applications lies in the fact that they run in their
own windows session without any user intervention in the background.
.Net - What are windows services? - June 03, 2009 at 11:00
AM by Shuchi Gauri
What are Windows Services?
Windows services are applications that run outside of any particular user
context.
Windows services are executable that performs specific functions and which is
designed not to require user intervention. They run in the background. They can
be started manually or can be automated.
.NET Windows Services - April 30, 2009 at 18:00 PM by Amit
Satpute
What are Windows Services?
-
The Windows services which were known as the NT services enable a user to
create long-running executable applications that run in their own Windows
sessions.
-
These services do not have any user interface and can be automatically started
when the computer boots and can be paused and restarted.
-
Due to these features of the Windows Services, they become ideal for use on a
server or a long-running functionality.
-
These services can also be run in the security context of a specific user
account that is different from the logged-on user or the default computer
account.
Also read
A service opens before one log in. However, a standard exe can be opened after a
log in only................
What are Windows Services?
Why are Windows Services needed?
Implementing a Simple Windows Service Application in
.NET.................
|