Top "Windows-services" questions

Windows services are background service processes run by the Service Control Manager on Windows NT based operating systems, similar to daemons or UNIX services.

Installing Windows Service with batch file?

I have the following in a bat file : @ECHO OFF REM The following directory is for .NET 4.0 set DOTNETFX2=%SystemRoot%\…

windows-services batch-file installutil
sc.exe how to set up the description for the windows Service?

I am using sc.exe command to install C# windows service. C:Windows\System32> sc.exe Create "TestService1" binPath= "…

c# windows-services
Alternative to "Allow service to interact with desktop"?

I have a windows service (C#) installed on a server that launches every 10 minutes an executable file (C#) to process …

c# windows-services exe
How to send a custom command to a .NET windows Service from .NET code?

As in the following link, one can stop, start, and "stop, then start" a service using C# code. http://www.…

c# .net-4.0 windows-services restart
How to install a windows service from command line specifying name and description?

I created a Windows service with Delphi for a client server application. To install it I use c:\Test\MyService.…

windows-services shellexecute
RestSharp Timeout not working

I have a restsharp client and request set up like this: var request = new RestRequest(); request.Method = Method.POST; request.…

c# .net windows-services timeout restsharp
How to Create a C# Listener Service for MSMQ as a Windows Service

I'll start by saying I'm not a .NET developer, but have been thrown into a project where I need to …

c# windows-services asp-classic msmq
Is it possible to create a standalone, C# web service deployed as an EXE or Windows service?

Is it possible to create a C# EXE or Windows Service that can process Web Service requests? Obviously, some sort …

c# web-services windows-services embeddedwebserver
ClickOnce deploy a Windows Service?

Is it possible to deploy a Windows Service using ClickOnce? If so, how do you achieve this? Currently we have …

c# visual-studio-2008 windows-services clickonce
Installing/Uninstalling Services in Windows 7: "Error 1001. The specified service has been marked for deletion"

I am currently developing a Windows Service in .NET 4.0, Visual Studio 2010, Windows 7-32bit. I have an installer project that …

.net windows-7 windows-services windows-installer