Questions tagged [services]

On Windows, services are processes running regardless of users logging in. They provide access and features to different programs or processes. On Mac OS X, services are menu bar and context menu items available from any application that can act on a user's selection, like text or files.

Questions with this tag should mention the operating system, as Mac OS X and Windows use the term services for very different concepts. Additionally, different services may act differently on different Windows versions. Windows services can include File Sharing, Network access, or just updaters.

Windows

For Windows 2000, XP, 2003, Vista, 2008 and 7, you can access the services that start automatically through the SERVICES.MSC Microsoft Management Console applet. This is usually accessed by pressing Windows+R to bring up the Run dialog, then typing services.msc and pressing Enter.

DISABLED means the service is unavailable to users and processes, and must be enabled with the services.msc applet

MANUAL means the service can be controlled by the application, or another process requesting it. It may not automatically start up, unless another service or program requests access to it.

AUTOMATIC and AUTOMATIC (Delayed) means the service will run automatically on system boot, and can be configured by any program with access to it.

Mac OS X

Service are scripts and programs that can process selected text, files, or URLs. They can be accessed from the Services menu item in the menu bar's application menu, or from the context menu of selected text, files, or similar items.

They are often provided by installed applications to integrate their functionality with other programs, such as Safari's Search With [Default Search Provider] (acting on text selection) or Stickies' Make New Sticky Note (also acting on text selection). Users can create custom services in Automator.

1094 questions
180
votes
9 answers

How can I restart gpg-agent?

Some changes in the GnuPG configuration demands a gpg-agent restart / reboot (according to the doc), but... How can I do that? I tried gpg-agent restart, service gpg-agent restart, but did not succeed.
Felipe
  • 2,338
93
votes
4 answers

Disable a Windows service from the command line

I want to disable a Windows service but I don't want to: Open the "Services" management console Scroll to the name of the service Right-click Properties (or double-click) Change the Startup Type: to disabled Apply Click "Stop" I don't want to…
81
votes
11 answers

Disabling Microsoft Antimalware service

I can't disable the Microsoft Antimalware service (MsMpSvc/MsMpEng.exe). I tried using services.msc, but the Startup Type drop-down is grayed out and I can't change it to Disabled nor stop the service. I also tried msconfig, but when I click Apply,…
Italo
  • 911
79
votes
5 answers

How to change path to executable for a Windows Service?

I want to change the path to the executable for a service from the command line. How can I do that? I want to run another .EXE from that service's path to executable.
sam
  • 1,037
68
votes
3 answers

What's the difference between an Application, a Process, and a Service?

How are these fundamentally different "things" on Windows? Aren't all running things Processes? It seems that every Application has an associated process that shuts it down if it is shut down. It looks like one process can manage more than one…
Justin L.
  • 1,209
62
votes
2 answers

What is the difference between “manual” and “disabled” service in Windows?

Windows services seem to come in three start-up types: Automatic: seems to mean that it is started at bootup Manual: seems to mean that it is not started at bootup Disabled: also seems to mean that it is not started at bootup What is the…
Timwi
  • 2,013
51
votes
8 answers

how to kill process in Mac OS X and not have it restart on its own

When I run sudo kill -9 [PID] with the proper process ID, the process stops but then is restarted and has a new PID. I'm trying to kill the mysqld process. How can I mimic the Activity Monitor in killing a process? In the Activity Monitor, when you…
Hristo
  • 1,269
45
votes
8 answers

How to remove MySQL service from Windows

I've removed all MySQL programs from my Win7 64bit desktop and I still have the MySQL service.How can I remove it? MySQL programs I removed: MySQL Community Server 5.1 MySQL Community Server 5.5 Workbench 5.2 ODBC 5.1 yes, I've restarted the…
Jonathan
  • 3,839
40
votes
4 answers

Which Google Updater is the one that I should allow to run?

My machine has 5 Google updaters running: Service: Google Update Service (gupdate) Keeps your Google software up to date. If this service is disabled or stopped, your Google software will not be kept up to date, meaning security vulnerabilities…
Ian Boyd
  • 23,066
33
votes
5 answers

How to monitor a service and restart if stopped in Linux

Actually I'm not so sure whether i should use Shell Scripts, or if there some ways already. But whatever approach we use, i would like to keep a Service running all the time. Let's say apache2 as an example. Then .. Whenever the apache2 service is…
32
votes
3 answers

How do I prevent Linux services from auto-starting?

I have recently migrated from Windows to Linux (xubuntu) I am a developer and have installed everything I need, LAMP. In Windows I used to turn off all unnecessary services - I don't need the Apache or MySQL service running all the time. Whenever I…
Aviv
  • 820
30
votes
2 answers

How do I enable services on a Windows computer via a command line?

On my Sony Viao pcg-811124 laptop with Windows 7, I disabled all non-Windows services through msconfig. When I restarted my laptop, it booted up, but I cannot view the screen, even in safe mode. I may have disabled a driver, but now I have no way…
frosty
  • 433
30
votes
3 answers

Remove Windows service from command line

I would like to do this because I have a half installed service because of installation failure which is just there, non-functioning. How can I delete the Windows service using the command line?
27
votes
7 answers

What Windows services can I safely disable?

I'm trying to improve the boot time and general performance of a Windows XP machine and figure the massive collection of services that Windows automatically starts have to have an impact. Are there any services that I can safely disable? If so what…
Alconja
  • 487
24
votes
3 answers

Wildcard Services restart

Currently, we have setup a .bat file which lists all services to start / stop them eg. SC start SERVICE1 SC start SERVICE2 SC stop SERVICE1 SC stop SERVICE2 We add new services all the time and the list grows and is difficult to maintain in the…
1
2 3
72 73