Windows 10 service called AarSvc_70f961. What is it and how could I disable it?

5

Recently I noticed a service in my windows 10 (v.1903, non-insider) installation with these properties:

  • Service name: AarSvc_70f96
  • Display name: Agent Activation Runtime_70f961
  • Description: Runtime for activating conversational agent applications
  • Path to executable: C:\WINDOWS\system32\svchost.exe -k AarSvcGroup -p

It is set to manual and cannot be disabled. Information on this service is very scarce but there are a few mentions like this where the last part of the service seems to be a random hexadecimal number (AarSvc_xxxxxx).

According to this, it is new to version 1903.

Does anyone have any more information as to what it is, if it should be disabled and how it could be disabled?

papnikol

Posted 2019-09-03T07:35:46.117

Reputation: 1 269

Answers

3

Reading over this Microsoft page, it seems this service relates to digital Assistants, such as Cortana and how they use the Windows.ApplicationModel.ConversationalAgent Namespace that appears to have been added in Windows 10 version 1903 (see the "Develop Windows Apps" section).

Provides applications the ability to expose functionality through any digital assistant supported by the Windows platform Agent Activation Runtime (AAR).

I don't see any reason to disable it, but in the one link you provided in your question, one of the dependencies of this service is Windows Audio. If this service is stopped or disabled, the Agent Activation Runtime service will be unable to start according to that page:

Agent Activation Runtime is unable to start, if the Windows Audio service is stopped or disabled.

I wouldn't recommend stopping Windows Audio however, as that will probably lead to a lot of unwanted issues.

Tim G.

Posted 2019-09-03T07:35:46.117

Reputation: 1 394

1The only reason to disable it would be the fact that we shouldn't have to run services we don't need, especially obscure ones. But, of course, you are right, disabling windows audio would probably lead to bigger problems. – papnikol – 2019-09-04T17:08:40.740

0

It's possible to set this service to disabled. Open Regedit, and navigate to:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AarSvc_70f96

Note that the trailing five digits will be different on every system. They can be determined by checking the "Service Name" entry shown when you double click on the service entry in the Services MMC plugin.

Inside that key is an entry "Start" which is a 32 bit DWORD value. Set that value to 4, the service will be disabled, and will not start at boot time.

You will also see another service AarSvc immediately above the one with the five digit random number. According to this page: https://docs.microsoft.com/en-us/windows/application-management/per-user-services-in-windows services of this sort are Per User services, and to completely disable them, the version without the five digits, AKA the template service, should also have its "Start" value set to 4.

dgnuff

Posted 2019-09-03T07:35:46.117

Reputation: 166

Thanks for the info, have you noticed any problems by disabling it? – papnikol – 2019-09-15T10:06:31.243

@papnikol I've not noticed any problems as a result of disabling it. However it should be noted that I have Cortana completely disabled, and no other third party "assistant" installed on my system. – dgnuff – 2019-09-16T09:19:19.903

that is my case too, there could be issues for someone using Cortana – papnikol – 2019-09-20T17:22:14.057